visit1985 / mdp

A command-line based markdown presentation tool.
GNU General Public License v3.0
4.96k stars 257 forks source link

Configure list style #120

Open purplebonsai opened 7 years ago

purplebonsai commented 7 years ago

Does mdp use any configuration file? I was wondering if it's possible to customize how mdp display content such as lists. Right now they are displayed like this

+- Item 1
+- Item 2
|    +- Item 2.1
|    +- Item 2.2
+- Item 3

I would like something like this

- Item 1
- Item 2
    - Item 2.1
    - Item 2.2
- Item 3
visit1985 commented 7 years ago

Currently there is no way to influence that except changing the code and compiling it yourself.

visit1985 commented 7 years ago

Actually, (after thinking about it for a while,) there is a way to fake it. You can create an uninterpreted list with stop signs in between:

\- Item 1
^
\- Item 2
^
\   - Item 2.1
^
\   - Item 2.2
^
\- Item 3
jtrees commented 2 years ago

I also wanted to ask for this. Currently I am using the described workaround.