asciidoctor / atom-language-asciidoc

⚛ AsciiDoc language package for the Atom editor.
https://atom.io/packages/language-asciidoc
MIT License
42 stars 20 forks source link

A plus sign that indicates continuation should be highlighted #42

Open textractor opened 8 years ago

textractor commented 8 years ago

If I have a list and I want a continuation, I use a plus ("+") to do that. However, the plus is not highlighted and looks like plain text.

mojavelinux commented 8 years ago

Actually, this issue is different from #79. Issue #79 deals with a hard line break. This issue is about a list continuation. The difference is that a hard line break is used at the end of a line of text. A list continuation stands on its own line and starts at the left margin.

Hard line break:

Roses are red. +
Violets are blue.

List continuation:

* item
+
image::supporting-image.png[]
nicorikken commented 8 years ago

My mistake, I assumed their behavior would be similar (end of line). Thanks for the clarification. Issue has just been reopened.