You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am really loving this directive because it can greatly help me clean up my HTML for some documentation that I am writing! However, it makes me write funny HTML and I was hoping there was a way to get around this.
Since markdown supports code blocks by indenting with 4 spaces, I cannot easily achieve the following because of the leading whitespace:
<div class="md-col-4">
<btf-markdown>
* Some
* List
* Here
</btf-markdown>
</div>
I instead have to write my HTML like the following which is a tad bit ugly:
<div class="md-col-4">
<btf-markdown>
* Some
* List
* Here
</btf-markdown>
</div>
Is there an option to strip the leading whitespace (perhaps based on the first line's amount of whitespace) so that we can more easily use this inline in our HTML?
The text was updated successfully, but these errors were encountered:
I am really loving this directive because it can greatly help me clean up my HTML for some documentation that I am writing! However, it makes me write funny HTML and I was hoping there was a way to get around this.
Since markdown supports code blocks by indenting with 4 spaces, I cannot easily achieve the following because of the leading whitespace:
I instead have to write my HTML like the following which is a tad bit ugly:
Is there an option to strip the leading whitespace (perhaps based on the first line's amount of whitespace) so that we can more easily use this inline in our HTML?
The text was updated successfully, but these errors were encountered: