Skip to content

Commit

Permalink
🔧 Add character to common ASCII most encountered and safe (MD) (#106)
Browse files Browse the repository at this point in the history
* 🔧 Add character to common ASCII most encountered and safe (MD)

* 🎨 reformat md.py
  • Loading branch information
Ousret authored Sep 17, 2021
1 parent 6d1c87d commit 16731dd
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions charset_normalizer/md.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@ def feed(self, character: str) -> None:
",",
"|",
'"',
"-",
]:
if is_punctuation(character):
self._punctuation_count += 1
Expand Down Expand Up @@ -238,6 +239,7 @@ def feed(self, character: str) -> None:
",",
"|",
'"',
"-",
]
):
self._last_printable_seen = None
Expand Down

0 comments on commit 16731dd

Please sign in to comment.