psychopy / pyosf

A pure python library for simple sync with Open Science Framework
9 stars 5 forks source link

fix markdown formatting of bullet list #10

Closed sappelhoff closed 6 years ago

sappelhoff commented 6 years ago

fixes the proper formatting of bullet lists:

Example:

my list will work:  # note: no indentation for bullets
- foo
- bar

my list won't work: 
    - foo
    - bar

my list will work:  # note the blank line when using indentation

    - foo
    - bar

Rendered:

my list will work:

my list won't work:

my list will work: # but probably different than expected

- foo
- bar
peircej commented 6 years ago

Thanks. FYI the reason for the bullet point failure was that this was originally restructured text instead of markdown. :)

sappelhoff commented 6 years ago

I see :-) at least I had my chance to contribute to something I like