496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
|
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
|
-
+
+
|
wiki_convert(&tail, 0, 0);
}else{
style_header("Documentation");
wiki_convert(&filebody, 0, 0);
}
style_footer();
#ifdef FOSSIL_ENABLE_MARKDOWN
}else if( fossil_strcmp(zMime, "text/x-markdown")==0 ){
}else if( fossil_strcmp(zMime, "text/x-markdown")==0
&& db_get_boolean("markdown", 0) ){
Blob title = BLOB_INITIALIZER;
Blob tail = BLOB_INITIALIZER;
markdown_to_html(&filebody, &title, &tail);
if( blob_size(&title)>0 ){
style_header(blob_str(&title));
}else{
style_header("Documentation");
|