dlang-community / libddoc

D implementation of the DDoc macro system
Boost Software License 1.0
7 stars 9 forks source link

Skip the backtick after `inlined code` so it doesn't remain in generated docs #17

Closed kiith-sa closed 9 years ago

kiith-sa commented 9 years ago

Currently,

`inlined code`

generates something like:

<pre style="display:inline;" class="d_inline_code">inline code</pre>`

That is, the trailing backtick is still in the output. This breaks harbored-mod, and probably harbored as well.

This pull request should fix this (but please check; I don't know if this change may cause other issue).

Geod24 commented 9 years ago

Could you add an unittest ?

Hackerpilot commented 9 years ago

I have a unit test that I'll check in after I merge this.