diff options
| author | thatch <devnull@localhost> | 2008-07-24 00:09:38 -0700 |
|---|---|---|
| committer | thatch <devnull@localhost> | 2008-07-24 00:09:38 -0700 |
| commit | d9d9d08a86d8cd005eb9c745d85c66c650e7cb26 (patch) | |
| tree | b7477223493c3143af62be87cea8ede5010b8c4d /tests/examplefiles/cheetah_example.html | |
| parent | 8cfba083a1089f25c4e1dc4231275ca3ee5466c9 (diff) | |
| download | pygments-d9d9d08a86d8cd005eb9c745d85c66c650e7cb26.tar.gz | |
Add Cheetah/Spitfire lexer, thanks to Matt Good in #346
Diffstat (limited to 'tests/examplefiles/cheetah_example.html')
| -rw-r--r-- | tests/examplefiles/cheetah_example.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/examplefiles/cheetah_example.html b/tests/examplefiles/cheetah_example.html new file mode 100644 index 00000000..e2a0f477 --- /dev/null +++ b/tests/examplefiles/cheetah_example.html @@ -0,0 +1,13 @@ +<html> + <head><title>$title</title></head> + <body> + <table> + #for $client in $clients + <tr> + <td>$client.surname, $client.firstname</td> + <td><a href="mailto:$client.email">$client.email</a></td> + </tr> + #end for + </table> + </body> +</html> |
