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

Preventing substitution #95

Closed ldez closed 8 years ago

ldez commented 8 years ago

Description

Add the support of preventing substitution.

Screenshots

capture du 2016-05-08 12-55-56

Syntax example

Single plus enclosure: This +*literal*+ will appear as *literal*.
\*Stars* will appear as *Stars*, not as bold text.
\\**Stars** will appear as **Stars**, not as bold text. FAILED
\_func_ will appear as _func_, not as emphasized text. FAILED
\\__func__ will appear as __func__, not as emphasized text. FAILED
\`foo` will appear as `foo`, not as monospaced text.
\§ will appear as an entity, not the § symbol. FAILED
\{two-semicolons} will appear {two-semicolons}, not resolved as ;;. FAILED
ldez commented 8 years ago

Related to #95

nicorikken commented 8 years ago

I guess you mean #92? which does solve this issue for strong syntax?

ldez commented 8 years ago

Yes :wink: I created an issue inception :smile: