Differences From Artifact [b28c072314]:
- File src/markdown_html.c — part of check-in [b1b4eaa564] at 2016-09-22 20:55:54 on branch trunk — Fix the "fossil fts-config reindex" command so that it really does reindex everything. Fix the markdown HTML formatter so that it can be run from the command-line. Change a query in the search engine to use a row-value update, in order to beta-test the new row-value update mechanism of SQLite. (user: drh size: 11338) [more...]
To Artifact [5c7c2d2356]:
- File src/markdown_html.c — part of check-in [68bd2e7bed] at 2016-11-04 20:49:23 on branch andygoth-timeline-ms — Integrate andygoth-quote-apostrophe. Needed because single quotes can be used in the tag filter entry, and these single quotes would otherwise be passed through unprotected to the output HTML. (user: andygoth size: 11413) [more...]
| ︙ | ︙ | |||
70 71 72 73 74 75 76 77 78 79 80 81 82 83 |
BLOB_APPEND_LITERAL(ob, "<");
}else if( data[i]=='>' ){
BLOB_APPEND_LITERAL(ob, ">");
}else if( data[i]=='&' ){
BLOB_APPEND_LITERAL(ob, "&");
}else if( data[i]=='"' ){
BLOB_APPEND_LITERAL(ob, """);
}else{
break;
}
i++;
}
}
}
| > > | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 |
BLOB_APPEND_LITERAL(ob, "<");
}else if( data[i]=='>' ){
BLOB_APPEND_LITERAL(ob, ">");
}else if( data[i]=='&' ){
BLOB_APPEND_LITERAL(ob, "&");
}else if( data[i]=='"' ){
BLOB_APPEND_LITERAL(ob, """);
}else if( data[i]=='\'' ){
BLOB_APPEND_LITERAL(ob, "'");
}else{
break;
}
i++;
}
}
}
|
| ︙ | ︙ |