AsciiDoc
AsciiDoc copied to clipboard
AsciiDoc Package for Sublime Text2
@FichteFoll please, review
`` `_` `` causes syntax highlighting to break. The code highlighting continues after the closing `` ` ``.
Is it possible to display document and section titles in the local symbol list (Ctrl + R)? [Here](https://github.com/zuckschwerdt/asciidoc.tmbundle/blob/master/Preferences/Symbol%20List:%20Heading.tmPreferences) is the link to the TextMate preferences that will displays the symbols....
When text is selected and the \` key is pressed, I would expect the text to become preformatted (eg. `text`). Instead it replaces the selected text with a single ``...
Toggling comment (Command + / on Mac) uses HTML style comments: ``` ``` I'm expecting it to use C style comments: ``` // a line ```
Sublime Text is freezing (window doesn't respond anymore and I have to force quit) when I try to edit this highlighted [AsciiDoc file](https://gist.githubusercontent.com/pchaigno/a9f333ea6dcee824f1cb/raw/3ca13a45591923986655b14cc9335673ad016b95/asciidoc-bug.adoc). I'm trying to remove lines 13 to...
Fixes #13 Fixes #15
If I type an explicit code block such as this: ``` class _MyClass { void foo(); }; ``` AsciiDoc syntax parser interprets the underscore in `_MyClass` as the beginning of...
Parse the ``` delimiters as explicit code block markup to highlight the code block and prevent other markup being parsed from the code block contents (e.g. interpretirng underscores as italic...