Output to Bootstrap?
Would it be possible to export html to bootstrap styling?
I am sure I am not phrasing this properly, but rather than using current tables, etc... use bootstrap stylings instead?
Thanks!
Brandon
Comments are currently closed for this discussion. You can start a new one.
Keyboard shortcuts
Generic
? | Show this help |
---|---|
ESC | Blurs the current field |
Comment Form
r | Focus the comment reply box |
---|---|
^ + ↩ | Submit the comment |
You can use Command ⌘
instead of Control ^
on Mac
Support Staff 1 Posted by Fletcher on 27 Aug, 2013 06:21 PM
Brandon,
MultiMarkdown, and therefore MultiMarkdown Composer, simply outputs HTML. You can use whatever CSS you like alter the appearance. That's the beauty of separating content from styling --- you can modify one without affecting the other.
You can either use the CSS metadata option to point to an external CSS file to provide the settings you desire (hosted on a web site, for example), or you can customize the Composer style sheet to include/embed the desired CSS that way:
http://fletcher.github.io/peg-multimarkdown/#css
http://support.multimarkdown.com/kb/style-sheets
Fletcher
2 Posted by brandon on 27 Aug, 2013 06:55 PM
Hi Fletcher,
Thanks for you fast response!
So how would one add, say, a class to a table that is part of the HTML output.
Thanks,
Brandon
Support Staff 3 Posted by Fletcher on 27 Aug, 2013 08:52 PM
There is not a part of the MMD syntax that applies user-specified classes to HTML elements. For that you would have to use the raw HTML.
There are always exceptions of course, but you can do a great amount of customization without applying custom classes to the HTML, especially with CSS 3.
F-