-
Notifications
You must be signed in to change notification settings - Fork 133
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
Make markbind styles cumulative on top of bootstrap styles #339
Comments
It is actually possible to do so. The issue comes in because rendering markdown content produces a
Before <p class="lead">
Lorem **Ipsum**
</p> After <p class="lead"></p>
<p>Lorem <strong>Ipsum</strong></p> Recommend you explicitly use |
That worked. Thanks for the workaround. 👍 |
It is there for cases where you have markdown content without any parent element, since it is not good to have stray text floating around in a HTML page. We should keep it as it helps us to ensure our pages are properly formatted. Some info: Most markdown content is parsed through |
I guess it is not easy to restrain this 'add |
This workaround can be documented as a 'how to' |
v1.9.0
Example: Bootstrap allows

<p class="lead"> some text </p>
to be used to show leading text of an article in a different formatting.This normally works in markbind, but as soon as we apply some markbind formatting on the text, it overrides the bootstrap formatting. e.g.,
<p class="lead"> **some** text </p>
will show the text in normal formatting + boldingSuggestion: in general, it's nice if our own styles such as bold/underline/tooltip etc. can be applied on top of styles applied by bootstrap.
The text was updated successfully, but these errors were encountered: