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

feat: Preventing substitutions #114

Closed ldez closed 8 years ago

ldez commented 8 years ago

Description

Preventing substitutions:

\§ will appear as an entity, not the § symbol. FAILED
\{two-semicolons} will appear {two-semicolons}, not resolved as ;;. FAILED

\[[idname]] foo  [[idname]]
\anchor:idname[] foo anchor:idname[]
\stem:[x != 0] foo stem:[x != 0]
\asciimath:[x != 0] foo asciimath:[x != 0]
\latexmath:[\sqrt(1) = 2] foo latexmath:[\sqrt(1) = 2]
\kbd:[Save] foo kbd:[Save]
\menu:File[New...] foo menu:File[New...]
\link:path[label] foo link:path[label]

Screenshots

capture du 2016-05-12 14-33-33

nicorikken commented 8 years ago

Nice, I also observed this needed to be done. Nice cleanup!

mojavelinux commented 8 years ago

:+1: