asciidoc-py / asciidoc-py2

Deprecated python2 implementation of AsciiDoc.py. See asciidoc-py/asciidoc-py for current work.
https://asciidoc.org/
GNU General Public License v2.0
466 stars 128 forks source link

id reference isn't interpreted on asciidoc table #133

Closed repomorphic closed 6 years ago

repomorphic commented 6 years ago

I am trying to give id reference to my table elements like the following:

[cols=2*,options=header] |==== |[#pro-] pro- |in place of, on behalf of |====

It is interpreted the following:

[cols=2*,options=header] |==== |[#pro-] pro- |in place of, on behalf of |====

Instead of :

[cols=2*,options=header] |==== | pro- |in place of, on behalf of |====

mojavelinux commented 6 years ago

Please file Asciidoctor issues here: http://github.com/asciidoctor/asciidoctor

You have to use the "longhand" syntax to define an ID on a table cell.

|[[pro-]] pro-
|in place of, on behalf of