remark-footnotes
Advanced tools
Comparing version 4.0.0 to 4.0.1
{ | ||
"name": "remark-footnotes", | ||
"version": "4.0.0", | ||
"version": "4.0.1", | ||
"description": "remark plugin to add support for pandoc footnotes", | ||
@@ -45,3 +45,2 @@ "license": "MIT", | ||
"c8": "^7.0.0", | ||
"dtslint": "^4.0.0", | ||
"prettier": "^2.0.0", | ||
@@ -52,4 +51,4 @@ "rehype-format": "^4.0.0", | ||
"remark-parse": "^10.0.0", | ||
"remark-preset-wooorm": "^8.0.0", | ||
"remark-rehype": "^8.0.0", | ||
"remark-preset-wooorm": "^9.0.0", | ||
"remark-rehype": "^9.0.0", | ||
"remark-stringify": "^10.0.0", | ||
@@ -63,3 +62,3 @@ "rimraf": "^3.0.0", | ||
"unist-util-remove-position": "^4.0.0", | ||
"xo": "^0.43.0" | ||
"xo": "^0.44.0" | ||
}, | ||
@@ -66,0 +65,0 @@ "scripts": { |
@@ -89,6 +89,6 @@ # remark-footnotes | ||
<p> | ||
Here is a footnote reference,<sup id="fnref-1"><a href="#fn-1" class="footnote-ref">1</a></sup> | ||
another,<sup id="fnref-longnote"><a href="#fn-longnote" class="footnote-ref">longnote</a></sup>, | ||
Here is a footnote reference,<a href="#fn1" class="footnote-ref" id="fnref1" role="doc-noteref"><sup>1</sup></a> | ||
another,<a href="#fn2" class="footnote-ref" id="fnref2" role="doc-noteref"><sup>2</sup></a>, | ||
and optionally there are inline | ||
notes.<sup id="fnref-2"><a href="#fn-2" class="footnote-ref">2</a></sup> | ||
notes.<a href="#fn3" class="footnote-ref" id="fnref3" role="doc-noteref"><sup>3</sup></a> | ||
</p> | ||
@@ -99,9 +99,9 @@ <p> | ||
</p> | ||
<div class="footnotes"> | ||
<section class="footnotes" role="doc-endnotes"> | ||
<hr> | ||
<ol> | ||
<li id="fn-1"> | ||
<p>Here is the footnote.<a href="#fnref-1" class="footnote-backref">↩</a></p> | ||
<li id="fn1" role="doc-endnote"> | ||
<p>Here is the footnote.<a href="#fnref1" class="footnote-back" role="doc-backlink">↩</a></p> | ||
</li> | ||
<li id="fn-longnote"> | ||
<li id="fn2" role="doc-endnote"> | ||
<p>Here’s one with multiple blocks.</p> | ||
@@ -117,13 +117,13 @@ <p> | ||
line. In this way, multi-paragraph footnotes work like | ||
multi-paragraph list items.<a href="#fnref-longnote" class="footnote-backref">↩</a> | ||
multi-paragraph list items.<a href="#fnref2" class="footnote-back" role="doc-backlink">↩</a> | ||
</p> | ||
</li> | ||
<li id="fn-2"> | ||
<li id="fn3" role="doc-endnote"> | ||
<p> | ||
you can type them inline, which may be easier, since you don’t | ||
have to pick an identifier and move down to type the note.<a href="#fnref-2" class="footnote-backref">↩</a> | ||
have to pick an identifier and move down to type the note.<a href="#fnref3" class="footnote-back" role="doc-backlink">↩</a> | ||
</p> | ||
</li> | ||
</ol> | ||
</div> | ||
</section> | ||
``` | ||
@@ -130,0 +130,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
11676
18