org-to-markdown
org-to-markdown copied to clipboard
How to avoid link and bold text breaklines?
Hi, thanks for your job. But i faced problem. When i trying convert text
* Hello
- *bold* some text.
- [[Some link][some text]]
I got such result:
# Hello
- **bold**
some text.
- It should be on one line
[some text](<Some link>)
Exptected result:
# Hello
- *bold* some text.
- It should be on one line [some text](<Some link>)