You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An open block can masquerade as any type of delimited block except a pass
(passthrough) block. With a small addition to asciidoc.conf, an open block
could work as a pass block when assigned the pass style.
For example, these two blocks should be equivalent:
++++
<h1>AsciiDoc</h1>
++++
and
[pass]
--
<h1>AsciiDoc</h1>
--
Here's the line that needs to be added to asciidoc.conf to support this feature:
[blockdef-open]
...
pass-style=template="passblock",subs=("attributes","macros")
We could also add another one that disables all subs
[blockdef-open]
...
pass_-style=template="passblock",subs=()
I'm not sure how to make the subs something that can be controlled from the
markup.
Original issue reported on code.google.com by dan.j.allen on 16 Mar 2013 at 12:55
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
dan.j.allen
on 16 Mar 2013 at 12:55The text was updated successfully, but these errors were encountered: