Is *LibreOffice* already running? If yes, then close it.
### Are linebreaks, paragraphs, and lists supported in table cells?
Unfortunately, markdown doesn't support multiple paragraphs in table cells. A table cell must be a single line. However, one can add a html `<br />` linebreak to break between lines:
```markdown
| Header |
|----------------|
| text<br/>text |
```
Lists in table cells are also not possible. One may use html lists for this, but this use is **discouraged** because it may cause problems in conversions from markdown to other document formats. It is recommend to use simple lists using a dash `-` character:
```markdown
| Header |
|----------------------------------|
| - list item 1<br/>- list item 2 |
```
## Changes
-**2023-08-18** - Improved handling of sometimes broken inline formatting in table cells. Adding more default heading formats.
-**2023-07-27** - Added converting bold and italic text in paragraphs, headers and tables.