diff options
author | Samy Pessé <samypesse@gmail.com> | 2015-09-15 11:48:18 +0200 |
---|---|---|
committer | Samy Pessé <samypesse@gmail.com> | 2015-09-15 11:48:18 +0200 |
commit | 87e4ee1eeb9918cbf151407c66b3377014612d5d (patch) | |
tree | ce283acc1495272a66f55132130d00d36e53cc6b /test/books/conrefs | |
parent | 45833eea9ad5fb97ab5e5095e4e4b8e3481c7d2e (diff) | |
download | gitbook-87e4ee1eeb9918cbf151407c66b3377014612d5d.zip gitbook-87e4ee1eeb9918cbf151407c66b3377014612d5d.tar.gz gitbook-87e4ee1eeb9918cbf151407c66b3377014612d5d.tar.bz2 |
Handle absolute file correctly for conrefs
Add test for absolute file for conrefs
Diffstat (limited to 'test/books/conrefs')
-rw-r--r-- | test/books/conrefs/README.md | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/books/conrefs/README.md b/test/books/conrefs/README.md index 7f56eed..cf15b87 100644 --- a/test/books/conrefs/README.md +++ b/test/books/conrefs/README.md @@ -3,8 +3,9 @@ ### Relative <p id="t1">{% include "./hello.md" %}</p> +<p id="t2">{% include "/hello.md" %}</p> ### Git -<p id="t2">{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test.md" %}</p> -<p id="t3">{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test2.md" %}</p> +<p id="t3">{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test.md" %}</p> +<p id="t4">{% include "git+https://gist.github.com/69ea4542e4c8967d2fa7.git/test2.md" %}</p> |