Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

``` Indented code blocks not parsed #184

Closed
SyntaxRules opened this issue Jul 30, 2015 · 4 comments
Closed

``` Indented code blocks not parsed #184

SyntaxRules opened this issue Jul 30, 2015 · 4 comments
Assignees
Labels

Comments

@SyntaxRules
Copy link
Member

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() { }
  ```

Expected output:
The following example defines...

  /* avoid */
  angular
      .module('app', ['ngRoute'])
      .controller('SomeController', SomeController)
      .factory('someFactory', someFactory);

  function SomeController() { }

  function someFactory() { }
@tivie
Copy link
Member

tivie commented Jul 30, 2015

related to #183

@tivie
Copy link
Member

tivie commented Jul 30, 2015

I'm on it. I've fixed the issue locally, I will push when a few edge cases are fixed

@tivie tivie added the bug label Jul 30, 2015
@tivie tivie self-assigned this Jul 30, 2015
@stephenplusplus
Copy link

Thanks, @tivie!

@tivie tivie closed this as completed in 7720c88 Aug 1, 2015
@SyntaxRules
Copy link
Member Author

@tivie Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants