nomagick commited on
Commit
ee29be5
·
unverified ·
1 Parent(s): f0c3a9b

fix: gfm strikethrough

Browse files
backend/functions/src/services/snapshot-formatter.ts CHANGED
@@ -48,7 +48,7 @@ export class SnapshotFormatter extends AsyncService {
48
 
49
  logger = this.globalLogger.child({ service: this.constructor.name });
50
 
51
- turnDownPlugins = [require('turndown-plugin-gfm').tables];
52
 
53
  constructor(
54
  protected globalLogger: Logger,
 
48
 
49
  logger = this.globalLogger.child({ service: this.constructor.name });
50
 
51
+ turnDownPlugins = [require('turndown-plugin-gfm').tables, require('turndown-plugin-gfm').strikethrough];
52
 
53
  constructor(
54
  protected globalLogger: Logger,