vinayak-mehta / present

A terminal-based presentation tool with colors and effects.
https://present.readthedocs.io
Apache License 2.0
4.32k stars 165 forks source link

Having two consecutive image inclusion lines causes NotImplementedError #83

Closed TymekDev closed 4 years ago

TymekDev commented 4 years ago

Describe the bug Having two consecutive image inclusion lines (without a blank line in between) causes NotImplementedError to be raised.

To Reproduce Add two image source lines. Example of slides below.

Expected behavior An error informing that the image source lines should be separated by a blank line.

Slides

# Good

![img](image.png)

![codio](codio.yaml)

---

# Bad

![img](image.png)
![codio](codio.yaml)

Environment

Additional context This is similar to #82 but I filed this separately because I would expect different errors from both. I also suspect that the root cause is different for both of these.

vinayak-mehta commented 4 years ago

Thanks for reporting this!