Skip to content

Instantly share code, notes, and snippets.

View matthew-macgregor's full-sized avatar
🏠
Working from home

Matthew MacGregor matthew-macgregor

🏠
Working from home
View GitHub Profile
@matthew-macgregor
matthew-macgregor / smartquotes.py
Last active April 25, 2023 05:15 — forked from davidtheclark/dumb_to_smart_quotes.py
Convert dumb quotes to smart quotes in Python
#!/usr/bin/env python3
"""
Inspired by : https://gist.github.com/davidtheclark/5521432
Converts dumb quotes to smart quotes, -- to EM_DASH and ... to ELLIPSES.
"""
import sys
import re
import os