rustextile 1.0.2

Textile markup language parser for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
Dimensions on images outside document root directory:
  input: |
    !10x10.gif! in test directory

    !../textile-wordmark.png! exists in php-textile root directory, but dimension read is prevented

    !../../10x10.gif! above root directory, access prevented
  expect: |
    <p><img alt="" src="10x10.gif" /> in test directory</p>

    <p><img alt="" src="../textile-wordmark.png" /> exists in php-textile root directory, but dimension read is prevented</p>

    <p><img alt="" src="../../10x10.gif" /> above root directory, access prevented</p>