Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/authoring/markdown-basics.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,15 @@ This document provides examples of the most commonly used markdown syntax. See t
| ``` | |
+-----------------------------------------+-----------------------------------------+

## Line Breaks

A newline within a paragraph produces a _soft break_, so the lines flow together in the rendered output. To force a _hard line break_ that starts a new line within the same paragraph, end the line with a backslash:

``` markdown
Roses are red,\
Violets are blue.
```

## Headings {#headings}

+------------------+-----------------------------------+
Expand Down
Loading