Note: This website is archived. For up-to-date information about D projects and development, please visit wiki.dlang.org.

Changes between Version 2 and Version 3 of SyntaxHighlightingBugs

Show
Ignore:
Author:
jcc7 (IP: 192.149.244.9)
Timestamp:
06/12/07 18:20:23 (17 years ago)
Comment:

corrected typo

Legend:

Unmodified
Added
Removed
Modified
  • SyntaxHighlightingBugs

    v2 v3  
    1 There is at least [http://www.dsource.org/forums/viewtopic.php?p=15314#15314 one bug in the Pygments-based D parser]. It seems to be related to escaped backslashes
     1There is at least [http://www.dsource.org/forums/viewtopic.php?p=15314#15314 one bug in the Pygments-based D parser]. It seems to be related to escaped backslashes in string literals denoted with double quote marks
    22 
    3 {{{ 
    4 #!d 
    53{{{ 
    64#!d 
    75const char[] quoteReg = "\'"; 
    86const char[] backslashReg = "\\"; 
     7const char[] quoteReg2 = "\'"; 
    98 
    109void main() 
    1211    printf("Hello, World!");   
    1312} 
    14 }}} 
    1513}}} 
    1614