Skip to content

Commit

Permalink
πŸ› Unescaped underscore
Browse files Browse the repository at this point in the history
  • Loading branch information
JichouP committed Mar 3, 2023
1 parent c00b334 commit d6e9ce1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export async function exportSlide(

await mkdir(exportDir, { recursive: true });
try {
await writeFile(tmpPath, reverseConverted);
await writeFile(tmpPath, reverseConverted.replace(/\\_/g, '_'));
} catch (e) {
console.error(e);
}
Expand Down

0 comments on commit d6e9ce1

Please sign in to comment.