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
bash-3.2$ cat test/data/quotecode.md
> ```
> a
> b
> c
> ```
bash-3.2$ ../markdown-cli/index.js transform --input test/data/quotecode.md --roundtrip
7:55:52 PM - info:
> ```
a
b
c
```
The text was updated successfully, but these errors were encountered:
bash-3.2$ more test/data/codeinblock.md
> ```
> a
> b
> c
> ```
bash-3.2$ ../markdown-cli/index.js transform --from markdown --to ciceromark --input test/data/codeinblock.md --roundtrip
11:36:56 AM - info:
> ```
> a
> b
> c
> ```
bash-3.2$ more test/data/codeinblock2.md
- > ```
> a
> b
> c
> ```
- > > ```
> > a
> > b
> > c
> > ```
bash-3.2$ ../markdown-cli/index.js transform --from markdown --to ciceromark --input test/data/codeinblock2.md --roundtrip
- > ```
> a
> b
> c
> ```
- > > ```
> > a
> > b
> > c
> > ```
bash-3.2$
For instance:
The text was updated successfully, but these errors were encountered: