-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
211 additions
and
251 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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,50 @@ | ||
Normally, the abstract ends when a new section begins. However, no | ||
all documents start with a section. An horizontal rule can be used | ||
mark the end of the abstract in such a case. | ||
|
||
``` markdown {#input} | ||
::: {.frontmatter} | ||
# Abstract | ||
|
||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. | ||
|
||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui | ||
officia deserunt mollit anim id est laborum. | ||
|
||
--- | ||
|
||
Mauris vel erat tincidunt, venenatis elit ac, luctus augue. | ||
Aliquam sed hendrerit augue. Donec finibus mi et dolor semper, non | ||
malesuada nulla ullamcorper. | ||
::: | ||
|
||
# Lorem Ipsum | ||
|
||
Quo dolore molestiae et laboriosam occaecati explicabo corrupti. | ||
Earum expedita ducimus quaerat est quam ut molestiae. Illum | ||
deleniti vel labore facilis et cum est. Est nemo est vel ad. | ||
``` | ||
|
||
``` markdown {#output} | ||
--- | ||
abstract: | | ||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do | ||
eiusmod tempor incididunt ut labore et dolore magna aliqua. | ||
|
||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui | ||
officia deserunt mollit anim id est laborum. | ||
--- | ||
|
||
::: frontmatter | ||
Mauris vel erat tincidunt, venenatis elit ac, luctus augue. Aliquam sed | ||
hendrerit augue. Donec finibus mi et dolor semper, non malesuada nulla | ||
ullamcorper. | ||
::: | ||
|
||
# Lorem Ipsum | ||
|
||
Quo dolore molestiae et laboriosam occaecati explicabo corrupti. Earum | ||
expedita ducimus quaerat est quam ut molestiae. Illum deleniti vel | ||
labore facilis et cum est. Est nemo est vel ad. | ||
``` |
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,49 @@ | ||
# Abstract nested in a div | ||
|
||
The abstract section can be nested below a div. | ||
|
||
``` markdown {#input} | ||
::: {.frontmatter} | ||
# Abstract | ||
|
||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia | ||
deserunt mollit anim id est laborum. | ||
|
||
# Preface | ||
|
||
* Phasellus purus. | ||
* Praesent fermentum tempor tellus. | ||
* Proin quam nisl, tincidunt et, mattis eget, convallis nec, purus. | ||
::: | ||
|
||
# Lorem Ipsum | ||
|
||
Quo dolore molestiae et laboriosam occaecati explicabo corrupti. | ||
Earum expedita ducimus quaerat est quam ut molestiae. Illum | ||
deleniti vel labore facilis et cum est. | ||
``` | ||
|
||
As with other placements of the abstract, it is removed from the | ||
main document and placed in the metadata. | ||
|
||
``` markdown {#output} | ||
--- | ||
abstract: | | ||
Excepteur sint occaecat cupidatat non proident, sunt in culpa qui | ||
officia deserunt mollit anim id est laborum. | ||
--- | ||
|
||
::: frontmatter | ||
# Preface | ||
|
||
- Phasellus purus. | ||
- Praesent fermentum tempor tellus. | ||
- Proin quam nisl, tincidunt et, mattis eget, convallis nec, purus. | ||
::: | ||
|
||
# Lorem Ipsum | ||
|
||
Quo dolore molestiae et laboriosam occaecati explicabo corrupti. Earum | ||
expedita ducimus quaerat est quam ut molestiae. Illum deleniti vel | ||
labore facilis et cum est. | ||
``` |
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,5 @@ | ||
--- | ||
filters: | ||
- abstract-section.lua | ||
ignore-softbreaks: true | ||
--- |
Oops, something went wrong.