Version 2.2.4; also when doing github checkbox as input form disable each checkbox

This commit is contained in:
david parsons
2018-08-05 13:39:32 -07:00
parent 0d01a2c9c0
commit 1baeb2dbd3
3 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -1 +1 @@
2.2.4b3
2.2.4
+1 -1
View File
@@ -1744,7 +1744,7 @@ li_htmlify(Paragraph *p, char *arguments, int flags, MMIOT *f)
Qprintf(f, ">");
#if CHECKBOX_AS_INPUT
if ( flags & GITHUB_CHECK ) {
Qprintf(f, "<input type=\"checkbox\"");
Qprintf(f, "<input disabled=\"\" type=\"checkbox\"");
if ( flags & IS_CHECKED )
Qprintf(f, " checked=\"checked\"");
Qprintf(f, "/>");
+3
View File
@@ -6,5 +6,8 @@ char markdown_version[] = BRANCH VERSION
#endif
#if USE_AMALLOC
" DEBUG"
#endif
#if GITHUB_CHECKBOX
" GITHUB_CHECKBOX"
#endif
;