summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Closing branch regex-flags.regex-flagsGeorg Brandl2017-01-180-0/+0
|
* Pull flags out of regular expressionsDavid Baumgold2016-12-291-3/+4
|
* Merged in josiahschwab/pygments-main/fortran-exponent-letter (pull request #656)Georg Brandl2016-08-191-2/+2
|\ | | | | | | Fortran exponent letter
| * Add exponent-letter D to Fortran lexerJosiah Schwab2016-08-181-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In the Fortran specification, the exponent-letter within a signed-real-literal-constant is E or D. Therefore, both 3.14159e0 and 3.14159d0 should be classified as a Number.Float. The current behavior is >>> print(highlight("3.14159d0", FortranLexer(), HtmlFormatter())) <div class="highlight"><pre><span></span><span class="mf">3.14159</span><span class="n">d0</span> </pre></div> where the only the significand is classified as a Number.Float while the exponent-letter and exponent are classified as Name.Variable. After this patch the behavior is >>> print(highlight("3.14159d0", FortranLexer(), HtmlFormatter())) <div class="highlight"><pre><span></span><span class="mf">3.14159d0</span> </pre></div> which is the expected behavior.
| * Created new branch fortran-exponent-letterJosiah Schwab2016-08-190-0/+0
|/
* Merged in kneufeld/pygments-main (pull request #605)Georg Brandl2016-06-162-1/+5
|\ | | | | | | text files should parse properly
| * TextLexer has no priority and comes late in alphabet so thereforeKurt Neufeld2016-06-031-0/+3
| | | | | | | | it will never be selected as default for *.txt files
| * ResourceLexer.analyse_text must return float or NoneKurt Neufeld2016-06-031-1/+2
| |
* | Only += is an operatorCamil Staps2016-06-161-3/+1
| |
* | Fixes #1246Camil Staps2016-06-161-0/+2
| |
* | Re-add more comment forms in Properties lexer to unbreak testsTim Hatch2016-06-031-0/+2
| |
* | Merged in pull request #595 (cmrx64/pygments-main)Tim Hatch2016-06-0386-1008/+12645
|\ \
| * \ Merged in camilstaps/pygments-main (pull request #598)Tim Hatch2016-06-031-10/+23
| |\ \ | | | | | | | | | | | | Clean lexer fixes: hierarchical module names; quantified inputs; generics
| | * | Clean lexer fixes: hierarchical module names; quantified inputs; genericsCamil Staps2016-05-311-10/+23
| | | |
| * | | Merged in jesquik/pygments-main-1243 (pull request #604)Tim Hatch2016-06-0325-886/+2174
| |\ \ \ | | | | | | | | | | | | | | | Fixes Issue #1243
| | * \ \ Merged in kneufeld/pygments-main (pull request #602)Tim Hatch2016-06-0321-885/+2010
| | |\ \ \ | | | |_|/ | | |/| | | | | | | Default
| | | * | Fix some unicode-related tests on Python 2.Tim Hatch2016-06-036-818/+820
| | | | | | | | | | | | | | | | | | | | Regexopt does the wrong then when given a mix of string types (as happens in Python 2).
| | | * | Merged in pull request #594 (bicycle1885/pygments-main)Tim Hatch2016-06-021-90/+206
| | | |\ \
| | | | * | fix JuliaLexer and JuliaConsoleLexerKenta Sato2016-05-121-90/+206
| | | | | |
| | | * | | Merge with -mainTim Hatch2016-06-023-2/+175
| | | |\ \ \
| | | | * \ \ Merged in domspad/pygments-main2 (pull request #603)Tim Hatch2016-06-021-1/+64
| | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | test for unicode chars in julia
| | | | | * | | typodomspad2016-06-021-2/+2
| | | | | | | |
| | | | | * | | added test for python3 at operatordomspad2016-06-021-1/+64
| | | | | | | |
| | | | * | | | python typosdomspad2016-06-021-2/+2
| | | | | | | |
| | | | * | | | test for unicode chars in julia`domspad2016-06-021-0/+60
| | | | |/ / /
| | | | * | | Merged in jesquik/pygments-main (pull request #600)Tim Hatch2016-06-022-2/+52
| | | | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Added Python cls builtin word token recognition
| | | | | * | | Replaced test method placeholder name and added docstringJessie Wincek2016-06-021-1/+5
| | | | | | | |
| | | | | * | | Fixed reStructuredText heading markerJessie Wincek2016-06-021-1/+1
| | | | | | | |
| | | | | * | | Added Python cls builtin word token recognitionJessie Wincek2016-06-022-2/+48
| | | | | | | |
| | | * | | | | Remove a bunch of duplicates in words()Tim Hatch2016-06-0211-47/+47
| | | | | | | |
| | | * | | | | Move stata builtins to their own file, remove some aliasesTim Hatch2016-06-024-419/+440
| | | |/ / / /
| | | * | | | Merged in mcaceresb/pygments-main/sas-stata (pull request #593)Tim Hatch2016-06-026-0/+813
| | | |\ \ \ \ | | | | |/ / / | | | |/| | | | | | | | | | Added syntax support and (very simple) styles for SAS and Stata
| | | | * | | Removed commented out test code.Mauricio Caceres2016-06-023-13/+6
| | | | | | |
| | | | * | | Removed redundant string interpolation in lexer definitions.Mauricio Caceres2016-05-102-7/+2
| | | | | | |
| | | | * | | Added syntax support and (very simple) styles for SAS and StataMauricio Caceres2016-05-096-0/+825
| | | | |/ /
| | * | | | moved my name info alphabetical orderKurt Neufeld2016-06-021-1/+1
| | | | | |
| | * | | | added github flavoured markdown parserKurt Neufeld2016-06-024-1/+157
| | | | | |
| | * | | | added Makefile shortcut test-examplefilesKurt Neufeld2016-06-021-0/+3
| | | | | |
| | * | | | allow running of a single example file test...Kurt Neufeld2016-06-021-0/+4
| | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | set environment variable TEST_EXT to desired test file extension before running tests. eg. TEST_EXT=md nosetests tests/test_examplefiles.py
| * | | | Added recognition of keys without a value being setJessie Wincek2016-06-022-0/+17
| | | | |
| * | | | The test test_space_delimiited_kv_pair() got a nameJessie Wincek2016-06-021-1/+1
| | | | |
| * | | | Added space as a valid delimiter between key and value. Added tests for \ ↵Jessie Wincek2016-06-022-0/+34
| | | | | | | | | | | | | | | | | | | | escaped spaces in keys and values.
| * | | | Comment leading whitespace no longer counts as Token.Comment but instead ↵Jessie Wincek2016-06-022-2/+13
| | | | | | | | | | | | | | | | | | | | Token.Text
| * | | | Better comment recognitionJessie Wincek2016-06-021-1/+1
| | | | |
| * | | | Added ! comment recognitionJessie Wincek2016-06-022-1/+32
| |/ / /
| * | | Prevent runaway escapes in php string.Tim Hatch2016-06-012-1/+37
| | | | | | | | | | | | | | | | Fixes #1184
| * | | Fix a bug in default grouping in regexopt when the words are all the same ↵Tim Hatch2016-06-012-1/+35
| | | | | | | | | | | | | | | | | | | | | | | | length. Fixes #1229
| * | | Correct links to chardet.Tim Hatch2016-06-012-2/+2
| | | | | | | | | | | | | | | | Fixes #1235
| * | | Rename Jade->PugTim Hatch2016-06-012-10/+11
| | | | | | | | | | | | | | | | Fixes #1242
| * | | Add extension for kif.Tim Hatch2016-06-011-1/+1
| | | | | | | | | | | | | | | | Fixes #1239