DCsunset / pandoc-include

A pandoc filter to allow file and header inclusion
MIT License
63 stars 14 forks source link

files with _ (underscore) in their name #31

Closed faridcher closed 1 year ago

faridcher commented 1 year ago

works fine with normal filenames but

```py
!include sound/__init__.py
‌‍```

does nothing: image

DCsunset commented 1 year ago

Hi, for filenames with special sequence in Markdown language, you can use the following syntax to escape them:

!include `__init__.py`

I have updated README for such cases.