Differences From:
File
src/wikiformat.c
part of check-in
[0039b7813e]
- Add the ⟾ mark after external hyperlinks in wiki.
by
drh on
2009-11-01 19:49:34.
[view]
To:
File
src/wikiformat.c
part of check-in
[980b160bd0]
- Disable the external link marking as it does not work on windows.
by
drh on
2009-11-02 13:19:44.
[view]
@@ -949,9 +949,9 @@
|| strncmp(zTarget, "ftp:", 4)==0
|| strncmp(zTarget, "mailto:", 7)==0
){
blob_appendf(p->pOut, "<a href=\"%s\">", zTarget);
- zTerm = "⟾</a>";
+ /* zTerm = "⟾</a>"; // doesn't work on windows */
}else if( zTarget[0]=='/' ){
if( 1 /* g.okHistory */ ){
blob_appendf(p->pOut, "<a href=\"%s%h\">", g.zBaseURL, zTarget);
}else{