Skip to content

Commit

Permalink
Merge pull request #1619 from mtdcr/b64-svg
Browse files Browse the repository at this point in the history
b64: Add svg to list of supported extensions
  • Loading branch information
facelessuser authored Feb 25, 2022
2 parents 48594e4 + 99a08a4 commit bbe726b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pymdownx/b64.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
file_types = {
(".png",): "image/png",
(".jpg", ".jpeg"): "image/jpeg",
(".gif",): "image/gif"
(".gif",): "image/gif",
(".svg",): "image/svg+xml",
}

RE_TAG_HTML = re.compile(
Expand Down

0 comments on commit bbe726b

Please sign in to comment.