diff --git a/README.md b/README.md
index fce4d0a..31b480f 100644
--- a/README.md
+++ b/README.md
@@ -189,11 +189,47 @@ $ git diff --word-diff
How do I force a line break?
-You can add a hard line break with the `
` element.
-Although CommonMark and other lightweight markup languages
-allow trailing spaces to indicate breaks between consecutive lines,
-this syntax is incompatible with
-editors that automatically strip trailing whitespace.
+Some lightweight markup languages provide a dedicated syntax for line breaks,
+some support line breaks using the inline HTML element `
`\*,
+and some do both.
+
+
+
+- AsciiDoc
+- **Syntax**: A trailing space followed by a plus sign (`+`)
+- **Inline HTML**: Not supported
+
+- CommonMark
+- **Syntax**: A trailing backslash (`\`) \*\*
+- **Inline HTML**: Supported
+
+- Markdown
+- **Syntax**: None
+- **Inline HTML**: Supported
+
+- MediaWiki
+- **Syntax**: None
+- **Inline HTML**: Supported
+
+- OrgMode
+- **Syntax**: Two trailing backslashes (`\\`)
+- **Inline HTML**: Not supported
+
+- reStructuredText
+- **Syntax**: Leading vertical line (`|`) in a [line block][rst-line-block]
+- **Inline HTML**: Not supported
+
+> \*
+> The _Line Break_ element is represented as
+> an empty tag (`
`) in HTML,
+> and either a tag pair (`
`) or
+> a self-closing tag (`
`) in XHTML.
+
+> \*\*
+> Although CommonMark allows the use of trailing spaces
+> to indicate breaks between consecutive lines,
+> this syntax is incompatible with
+> tools that automatically strip trailing whitespace.
@@ -226,6 +262,7 @@ If you’d like to leave feedback, please
[commonmark]: http://commonmark.org
[github-issues]: https://github.com/sembr/specification/issues
[haddock]: https://www.haskell.org/haddock/doc/html/
+[rst-line-block]: https://docutils.sourceforge.io/docs/ref/rst/restructuredtext.html#line-blocks
[markdown]: https://daringfireball.net/projects/markdown/
[mattt]: https://mat.tt
[mediawiki]: https://www.mediawiki.org/wiki/Help:Formatting