diff options
author | gbrandl <devnull@localhost> | 2007-09-28 19:05:23 +0200 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-09-28 19:05:23 +0200 |
commit | 15446616b0d843df91bbb9b644077981ebcba821 (patch) | |
tree | 87400258dc713ccd7a90ba75d9a409fd395433df /docs/src | |
parent | 2f8728aaa5d2562880487295fc6e11411df5ef04 (diff) | |
download | pygments-15446616b0d843df91bbb9b644077981ebcba821.tar.gz |
Add doc entry for r434.
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/lexerdevelopment.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/src/lexerdevelopment.txt b/docs/src/lexerdevelopment.txt index 2af2683f..0d19c967 100644 --- a/docs/src/lexerdevelopment.txt +++ b/docs/src/lexerdevelopment.txt @@ -237,6 +237,9 @@ There are a few more things you can do with states: the closing ``*/``. Then, both states are popped from the stack again and lexing continues in the root state. + *New in Pygments 0.9:* The tuple can contain the special ``'#push'`` and + ``'#pop'`` (but not ``'#pop:n'``) directives. + - You can include the rules of a state in the definition of another. This is done by using `include` from `pygments.lexer`: |