2019-08-24 17:16:39 -05:00
|
|
|
from functools import lru_cache
|
|
|
|
|
|
|
|
from bs4 import BeautifulSoup
|
|
|
|
from pygments import highlight as phighlight
|
|
|
|
from pygments.formatters import HtmlFormatter
|
|
|
|
from pygments.lexers import guess_lexer
|
|
|
|
|
|
|
|
from config import THEME_STYLE
|
|
|
|
from config import ThemeStyle
|
|
|
|
|
|
|
|
_FORMATTER = HtmlFormatter(
|
|
|
|
style="default" if THEME_STYLE == ThemeStyle.LIGHT else "vim"
|
|
|
|
)
|
|
|
|
|
|
|
|
HIGHLIGHT_CSS = _FORMATTER.get_style_defs()
|
|
|
|
|
|
|
|
|
|
|
|
@lru_cache(512)
|
|
|
|
def highlight(html: str) -> str:
|
|
|
|
soup = BeautifulSoup(html, "html5lib")
|
|
|
|
for code in soup.find_all("code"):
|
|
|
|
if not code.parent.name == "pre":
|
|
|
|
continue
|
|
|
|
lexer = guess_lexer(code.text)
|
2019-09-01 03:45:18 -05:00
|
|
|
tag = BeautifulSoup(phighlight(code.text, lexer, _FORMATTER), "html5lib").body.next
|
2019-08-24 17:16:39 -05:00
|
|
|
pre = code.parent
|
|
|
|
pre.replaceWith(tag)
|
|
|
|
out = soup.body
|
|
|
|
out.name = "div"
|
|
|
|
return str(out)
|