Skip to content

Commit

Permalink
Cleanup, changes, contributors
Browse files Browse the repository at this point in the history
  • Loading branch information
nicholasserra committed Sep 23, 2024
1 parent 6ea287c commit 929d505
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- [pull #590] Fix underscores within bold text getting emphasized (#589)
- [pull #591] Add Alerts extra
- [pull #595] Fix img alt text being processed as markdown (#594)
- [pull #600] Use urandom for SECRET_SALT
- [pull #602] Fix XSS issue in safe mode (#601)
- [pull #604] Fix XSS injection in image URLs (#603)

Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,4 @@ Kishore (github.com/jk6521)
Ircama (github.com/Ircama)
Ankit Mahato (github.com/animator)
Eric Dufresne (github.com/edufresne)
Lyra Rebane (github.com/rebane2001)
2 changes: 1 addition & 1 deletion lib/markdown2.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@
from abc import ABC, abstractmethod
import functools
from hashlib import sha256
from random import randint, random
from random import random
from typing import Any, Callable, Collection, Dict, List, Literal, Optional, Tuple, Type, TypedDict, Union
from enum import IntEnum, auto
from os import urandom
Expand Down

0 comments on commit 929d505

Please sign in to comment.