We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following Markdown code seems to be valid in (GitHub-flavored) Markdown:
``` ruby def foo(x) return 3 end ```
(notice the space between the opening fence ``` and ruby). However, the code-block is currently not syntax-highlighted properly (the Ruby part).
```
ruby
Compare:
The text was updated successfully, but these errors were encountered:
Allow whitespace btw. opening fence and language
49d9831
Allow for code blocks like ``` ruby def foo(x) return 3 end ``` with whitespace between the opening fence and the 'ruby' keyword. closes sublimehq#1615
Successfully merging a pull request may close this issue.
The following Markdown code seems to be valid in (GitHub-flavored) Markdown:
(notice the space between the opening fence
```
andruby
). However, the code-block is currently not syntax-highlighted properly (the Ruby part).Compare:
The text was updated successfully, but these errors were encountered: