Skip to content

Commit

Permalink
fix: fix quote issue in table for #94
Browse files Browse the repository at this point in the history
  • Loading branch information
phodal committed Apr 11, 2020
1 parent 2d9fbe8 commit bc607cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const LedgeMarkdownConverter = {
break;
}
case 'text': {
result += `"name": "${this.escape(token.text)}",`;
result += `"name": ${JSON.stringify(token.text)},`;
break;
}
case 'list_item_end': {
Expand Down

0 comments on commit bc607cc

Please sign in to comment.