public
Description: An implementation of markdown in C, using a PEG grammar
Clone URL: git://github.com/jgm/peg-markdown.git
Search Repo:
Changed HTML APOSTROPHE to ’ if "smart" selected.
jgm (author)
Thu May 15 15:30:23 -0700 2008
commit  0f7d17cb4d21585897b6246fe519657d5b9bb44a
tree    4f94ed13c53077b20b243abb58b0785a3b668886
parent  b4ee929ff78d01432965365106f7f38fc02abf62
...
115
116
117
118
 
119
120
121
...
115
116
117
 
118
119
120
121
0
@@ -115,7 +115,7 @@
0
         printf("–");
0
         break;
0
     case APOSTROPHE:
0
- printf("'");
0
+ printf("’");
0
         break;
0
     case SINGLEQUOTED:
0
         printf("‘");

Comments

    No one has commented yet.