From d85484cdc4a549c4c980d90464bb4006ba4fbee1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vytautas=20=C5=A0altenis?= Date: Sat, 25 Aug 2018 00:13:41 +0300 Subject: [PATCH] Fix comment about inline footnotes (#473) --- markdown.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/markdown.go b/markdown.go index f39ca50..58d2e45 100644 --- a/markdown.go +++ b/markdown.go @@ -480,11 +480,11 @@ func (p *Markdown) parseRefsToAST() { // [^note]: This is the explanation. // // 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 // footnotes.