You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed, that round tripping markdown adds spaces in front of `*`:
```julia
marky = md"""
# Test
* test test
"""
string(marky)
```
Results in:
```
"# Test\n\n * test test\n"
```
I guess there are no round tripping guarantees for this, but I think this is not what a markdown formatter would do?
I'm not sure what `plain` wants to achieve here with the space, so I wanted to put this up for discussion via this PR!
Not really important in general, but for my use case it would be nice to drop the space ;)
0 commit comments