Skip to content

Commit

Permalink
Fixed Issue #8
Browse files Browse the repository at this point in the history
Fixed: Blank lines removed between code block and ellipses #8
  • Loading branch information
mogsdad committed Oct 9, 2015
1 parent 48106a9 commit f9d1b99
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions editor.user.js
Expand Up @@ -399,7 +399,7 @@
reason: "grammar and spelling"
},
im: {
expr: /\bim\b/gi,
expr: /\bi ?m\b/gi,
replacement: "I'm",
reason: "grammar and spelling"
},
Expand Down Expand Up @@ -786,8 +786,8 @@
replacement: "$1",
reason: "punctuation & spacing"
},
spacesbeforesymbols: {
expr: /\s+([.,!?;:])(?!\w)/g,
spacesbeforesymbols: { // https://regex101.com/r/vS3dS3/1
expr: /[ \t]+([.,!?;:])(?!\w)/g,
replacement: "$1",
reason: "punctuation & spacing"
},
Expand Down

0 comments on commit f9d1b99

Please sign in to comment.