You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When code blocks are indented, they do not parse. Specificy, when the ``` is indented, the preceding code block is ignored.
Markdown:
The following example defines...
```javascript
/* avoid */
angular
.module('app', ['ngRoute'])
.controller('SomeController', SomeController)
.factory('someFactory', someFactory);
function SomeController() { }
function someFactory() { }
```
When code blocks are indented, they do not parse. Specificy, when the ``` is indented, the preceding code block is ignored.
Markdown:
Expected output:
The following example defines...
The text was updated successfully, but these errors were encountered: