-
-
Notifications
You must be signed in to change notification settings - Fork 32
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
rendering of markdown lists is broken #178
Comments
Is there a way for me to tell JSServe to not include the |
I am currently using a manually added |
I have the same issue. But it seems not work for |
This should work: landing = App() do
content = md"""
- this should
# - be a normal
- bullet list
"""
style = DOM.style("""
li > p {
display: inline;
}
""")
return DOM.div(Bonito.MarkdownCSS, style, content)
end We need to re-evaluate why the |
I have the following markdown page:
Instead of rendering as a bullet list, the rendering is broken:
Here is the HTML that JSServe generated:
If I delete
list-style: inside;
from thestyle
attribute, things work fine.The text was updated successfully, but these errors were encountered: