Closed TetraTheta closed 2 months ago
I added missing id attribute.
id
Test markdown:
> p {#asdf .sec} | | | |-|-| |test|test2| {.cls #tbl _thead=false}
Rendered result:
<blockquote id="asdf" class="blockquote sec border-start ps-3 py-1 border-primary border-4"> <p>p</p> </blockquote> <div class="table-responsive"> <table id="tbl" class="table table-bordered align-middle table-hover table-striped cls"> <tbody> <tr> <td class="text-start">test</td> <td class="text-start">test2</td> </tr> </tbody> </table> </div>
I only tested with #id syntax, but this should also work with id= syntax.
#id
id=
The table should already support id, could you please confirm it and revert the change of table hook.
I removed the table hook from the PR. Thank you for letting me know about that!
Thanks.
I added missing
id
attribute.Test markdown:
Rendered result:
I only tested with
#id
syntax, but this should also work withid=
syntax.