I have the following cells in a markdown table:
something something that's rather long and goes on for a very long time something else
I'd like to be able to insert a break in the middle line, so the middle column isn't so large. How can I do that in Markdown? Do I need to use HTML tables instead?
<br>
be careful that you don't leave any space in the front(indentation). I've had the same problem but when I removed the tab space it worked.
Use an HTML line break (<br />
) to force a line break within a table cell:
| something | something that's rather long and <br />goes on for a very long time | something else |
|-----------|---------------------------------------------------------------|----------------|
Rendered:
something something that's rather long and goes on for a very long time something else
When you're exporting to HTML, using <br>
works. However, if you're using pandoc to export to LaTeX/PDF as well, you should use grid tables:
+---------------+---------------+--------------------+
| Fruit | Price | Advantages |
+===============+===============+====================+
| Bananas | first line\ | first line\ |
| | next line | next line |
+---------------+---------------+--------------------+
| Bananas | first line\ | first line\ |
| | next line | next line |
+---------------+---------------+--------------------+
\newline
(a LaTeX command) inside the table, which passes through because there is an option to allow raw tex. However, this text appears in the preview browser.
Use <br/>
. For example:
Change log, upgrade version
Dependency | Old version | New version |
---------- | ----------- | -----------
Spring Boot | `1.3.5.RELEASE` | `1.4.3.RELEASE`
Gradle | `2.13` | `3.2.1`
Gradle plugin <br/>`com.gorylenko.gradle-git-properties` | `1.4.16` | `1.4.17`
`org.webjars:requirejs` | `2.2.0` | `2.3.2`
`org.webjars.npm:stompjs` | `2.3.3` | `2.3.3`
`org.webjars.bower:sockjs-client` | `1.1.0` | `1.1.1`
URL: https://github.com/donhuvy/lsb/wiki
Just for those that are trying to do this on Jira
. Just add \\
at the end of each line and a new line will be created:
|Something|Something else \\ that's rather long|Something else|
Will render this:
https://i.stack.imgur.com/c5PXL.png
Source: Text breaks on Jira
Success story sharing
pandoc
.<br>
syntax also works on GitLab, which uses Redcarpet Ruby library for Markdown processing (reference)