We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2fdb44 commit 503e393Copy full SHA for 503e393
1 file changed
src/main.c
@@ -244,6 +244,7 @@ static char *process_md (const char *input, size_t *len) {
244
245
case '[':
246
case ']':
247
+ case '\t':
248
case '*': {
249
// skip character
250
continue;
@@ -255,7 +256,8 @@ static char *process_md (const char *input, size_t *len) {
255
256
break;
257
}
258
- case '"': {
259
+ case '"':
260
+ case '\\': {
261
if (json_mode) buffer[j++] = '\\';
262
263
0 commit comments