File tree Expand file tree Collapse file tree
commonmark/src/main/java/org/commonmark/node Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ public void setFenceIndent(int fenceIndent) {
6767 }
6868
6969 /**
70- * @see <a href="http://spec.commonmark.org/0.18 /#info-string">CommonMark spec</a>
70+ * @see <a href="http://spec.commonmark.org/0.31.2 /#info-string">CommonMark spec</a>
7171 */
7272 public String getInfo () {
7373 return info ;
Original file line number Diff line number Diff line change 33/**
44 * HTML block
55 *
6- * @see <a href="http://spec.commonmark.org/0.18 /#html-blocks">CommonMark Spec</a>
6+ * @see <a href="http://spec.commonmark.org/0.31.2 /#html-blocks">CommonMark Spec</a>
77 */
88public class HtmlBlock extends Block {
99
Original file line number Diff line number Diff line change 33/**
44 * Inline HTML element.
55 *
6- * @see <a href="http://spec.commonmark.org/0.24 /#raw-html">CommonMark Spec</a>
6+ * @see <a href="http://spec.commonmark.org/0.31.2 /#raw-html">CommonMark Spec</a>
77 */
88public class HtmlInline extends Node {
99
Original file line number Diff line number Diff line change 1818 * Note that the text in the link can contain inline formatting, so it could also contain an {@link Image} or
1919 * {@link Emphasis}, etc.
2020 *
21- * @see <a href="http://spec.commonmark.org/0.26 /#links">CommonMark Spec for links</a>
21+ * @see <a href="http://spec.commonmark.org/0.31.2 /#links">CommonMark Spec for links</a>
2222 */
2323public class Link extends Node {
2424
Original file line number Diff line number Diff line change 99 * They can be referenced anywhere else in the document to produce a link using <code>[foo]</code>. The definitions
1010 * themselves are usually not rendered in the final output.
1111 *
12- * @see <a href="https://spec.commonmark.org/0.29 /#link-reference-definition">Link reference definitions</a>
12+ * @see <a href="https://spec.commonmark.org/0.31.2 /#link-reference-definition">Link reference definitions</a>
1313 */
1414public class LinkReferenceDefinition extends Block {
1515
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ public abstract class ListBlock extends Block {
66
77 /**
88 * @return whether this list is tight or loose
9- * @see <a href="https://spec.commonmark.org/0.28 /#tight">CommonMark Spec for tight lists</a>
9+ * @see <a href="https://spec.commonmark.org/0.31.2 /#tight">CommonMark Spec for tight lists</a>
1010 */
1111 public boolean isTight () {
1212 return tight ;
You can’t perform that action at this time.
0 commit comments