parent
c6949a5d89
commit
3dcec7e27e
5 changed files with 128 additions and 20 deletions
@ -1,11 +1,12 @@ |
||||
--- |
||||
title: "Citations Example" |
||||
description: > |
||||
+++ |
||||
title = "Citations Example (TOML)" |
||||
description = """ |
||||
Test the parsing of Pandoc Citations, while also testing that ox-hugo |
||||
exported Markdown doesn't get broken. |
||||
tags: ["pandoc", "citeproc"] |
||||
draft: false |
||||
--- |
||||
exported Markdown doesn't get broken -- TOML front-matter. |
||||
""" |
||||
tags = ["pandoc", "citeproc", "toml"] |
||||
draft = false |
||||
+++ |
||||
|
||||
`ox-hugo` Issue |
||||
\#[175](https://github.com/kaushalmodi/ox-hugo/issues/175) |
||||
@ -0,0 +1,68 @@ |
||||
--- |
||||
title: "Citations Example (YAML)" |
||||
description: > |
||||
Test the parsing of Pandoc Citations, while also testing that ox-hugo |
||||
exported Markdown doesn't get broken -- YAML front-matter. |
||||
tags: ["pandoc", "citeproc", "yaml"] |
||||
draft: false |
||||
--- |
||||
|
||||
`ox-hugo` Issue |
||||
\#[175](https://github.com/kaushalmodi/ox-hugo/issues/175) |
||||
|
||||
## Section 1 |
||||
|
||||
Here is a test example file with an in-text citation where someone |
||||
important says something important (e.g. Loncar (2016)). And here is |
||||
another bit of blah with a footnote citation.[^1] |
||||
|
||||
See [Section 2](#citation-example-section-2). |
||||
|
||||
## Section 2 {#citation-example-section-2} |
||||
|
||||
Content in section 2. |
||||
|
||||
## References {#references} |
||||
|
||||
<div id="refs .references"> |
||||
<div></div> |
||||
|
||||
|
||||
<div id="ref-eilan2016"> |
||||
<div></div> |
||||
|
||||
Eilan, Naomi. 2016. "You Me and the World." *Analysis* 76 (3): 311--24. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-giovanelli2016"> |
||||
<div></div> |
||||
|
||||
Giovanelli, Marco. 2016. "\"\...But I Still Can't Get Rid of a Sense of |
||||
Artificiality\" the Reichenbach--Einstein Debate on the Geometrization |
||||
of the Electromagnetic Field." *Studies in History and Philosophy of |
||||
Science* 54: 35--51. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-loncar2016"> |
||||
<div></div> |
||||
|
||||
Loncar, Samuel. 2016. "Why Listen to Philosophers? A Constructive |
||||
Critique of Disciplinary Philosophy." *Metaphilosophy* 47 (1): 3--25. |
||||
|
||||
</div> |
||||
|
||||
<div id="ref-thompson2016"> |
||||
<div></div> |
||||
|
||||
Thompson, Morgan, Toni Adleberg, Sam Sims, and Eddy Nahmias. 2016. "Why |
||||
Do Women Leave Philosophy? Surveying Students at the Introductory |
||||
Level." |
||||
|
||||
</div> |
||||
|
||||
|
||||
</div> <!-- ending references --> |
||||
|
||||
[^1]: See (Thompson et al. 2016). |
||||
Loading…
Reference in new issue