-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support HTML_CONTAINER and HTML_CONTAINER_CLASS
Fixes #271.
- Loading branch information
1 parent
497d588
commit 4ea2bd3
Showing
4 changed files
with
183 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
+++ | ||
title = "HTML Container with class" | ||
tags = ["headings", "container", "html"] | ||
draft = false | ||
+++ | ||
|
||
<section class="outline-1 foo"> | ||
|
||
## Top level heading 1 {#top-level-heading-1} | ||
|
||
This heading is wrapped in a `section` tag with classes `outline-1` | ||
and `foo`. | ||
|
||
<div class="outline-2 foo"> | ||
|
||
### Sub-heading 1.1 {#sub-heading-1-dot-1} | ||
|
||
This heading is wrapped in a `div` tag with classes `outline-2` and | ||
`foo`. | ||
|
||
</div> | ||
|
||
</section> | ||
|
||
<section class="outline-1 bar"> | ||
|
||
## Top level heading 2 {#top-level-heading-2} | ||
|
||
This heading is wrapped in a `section` tag with classes `outline-2` and | ||
`bar`. | ||
|
||
<div class="outline-2 zoo"> | ||
|
||
### Sub-heading 2.1 {#sub-heading-2-dot-1} | ||
|
||
This heading is wrapped in a `div` tag with classes `outline-2` and | ||
`zoo`. | ||
|
||
</div> | ||
|
||
</section> | ||
|
||
<aside class="outline-1 foo"> | ||
|
||
## Top level heading 3 {#top-level-heading-3} | ||
|
||
This heading is wrapped in an `aside` tag with classes `outline-1` and | ||
`foo`. | ||
|
||
<blockquote class="outline-2 baz"> | ||
|
||
### Sub-heading 3.1 {#sub-heading-3-dot-1} | ||
|
||
This heading is wrapped in a `blockquote` tag with classes `outline-2` | ||
and `baz`. | ||
|
||
</blockquote> | ||
|
||
</aside> |