DCsunset / pandoc-include

A pandoc filter to allow file and header inclusion

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

files with _ (underscore) in their name

faridcher opened this issue · comments

works fine with normal filenames but

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

does nothing:
image

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.