-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unordered lists should support style #658
Comments
I'm fixing this as part of the work to generalize the parser for multiple roles. |
wouldn't it be better to address this in a separate PR? It's not directly related to multiple roles on elements, is it? |
This will be a PR that introduces two components -- the first is the parser support (which is basically just making it use BlockAttr), and the second is the changes to the templates to actually use the style Attribute. |
Also, doing two separate PRs substantially increases the workload. The PR review itself is bigger, but more to the point I have to write the tests once, and then rewrite (and add more) them for the follow up. I'd just assume skip some of the middle bits. |
(This will be a PR with only the unordered list conversion though.) |
This converts unordered lists so that they can support multiple roles, and the style attribute properly. It includes both the parser side and renderer side changes. The templates were converted to use the exact HTML output that asciidoctor emits. Fixes bytesparadise#658
This converts unordered lists so that they can support multiple roles, and the style attribute properly. It includes both the parser side and renderer side changes. The templates were converted to use the exact HTML output that asciidoctor emits. Fixes #658
Unordered list are supposed to support the following styles
According to the docs for asciidoctor, these are placed as the class on the
<ul>
element.The text was updated successfully, but these errors were encountered: