asciidoctor / docbookrx

(An early version of) a DocBook to AsciiDoc converter written in Ruby.
MIT License
22 stars 49 forks source link

Implement <list> IDs #35

Open jaredmorgs opened 8 years ago

jaredmorgs commented 8 years ago

Tracked from the issues marked with an asterix in https://github.com/opendevise/docbookrx/blob/master/WORKLOG.adoc

mojavelinux commented 8 years ago

Sample input:

<itemizedlist xml:id="name">
<listitem>
<simpara>item one</simpara>
</listitem>
<listitem>
<simpara>item two</simpara>
</listitem>
</itemizedlist>

Expected output:

[#name]
* item one
* item two

Actual output:

* item one
* item two

NOTE: I would like to use the shorthand [#name] instead of [[name]].