Fix comment about inline footnotes (#473)

This commit is contained in:
Vytautas Šaltenis 2018-08-25 00:13:41 +03:00 committed by GitHub
parent 5a12bbca53
commit d85484cdc4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -480,11 +480,11 @@ func (p *Markdown) parseRefsToAST() {
// [^note]: This is the explanation. // [^note]: This is the explanation.
// //
// Footnotes should be placed at the end of the document in an ordered list. // Footnotes should be placed at the end of the document in an ordered list.
// Inline footnotes such as: // Finally, there are inline footnotes such as:
// //
// Inline footnotes^[Not supported.] also exist. // Inline footnotes^[Also supported.] provide a quick inline explanation,
// but are rendered at the bottom of the document.
// //
// are not yet supported.
// reference holds all information necessary for a reference-style links or // reference holds all information necessary for a reference-style links or
// footnotes. // footnotes.