Skip to content

Commit

Permalink
インデントを修正
Browse files Browse the repository at this point in the history
  • Loading branch information
takanotume24 committed Jan 19, 2024
1 parent c759a06 commit 7495aa2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class OriginalInputHandler {

private processText(text: string): string {
const replacements: [RegExp, string | ((substring: string) => string)][] = [
[/-\n/g, ""], // Removes hyphen followed by a newline
[/-\n/g, ""], // Removes hyphen followed by a newline
[/\n/g, " "], // Replaces newlines with spaces
[/- /g, ""], // Removes hyphens followed by a space
[/Fig\. /g, "Fig."], // Formats abbreviation for "Figure"
Expand Down

0 comments on commit 7495aa2

Please sign in to comment.