-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) | ||
Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ Individual files contain the following tag instead of the full license text. | |
This file is part of the markdown-svgbob project | ||
https://gitlab.com/mbarkhau/markdown-svgbob | ||
|
||
Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) - MIT License | ||
Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) - MIT License | ||
SPDX-License-Identifier: MIT | ||
|
||
This enables machine processing of license information based on the SPDX | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,7 +42,7 @@ def read(*sub_paths): | |
author="Manuel Barkhau", | ||
author_email="[email protected]", | ||
url="https://github.com/mbarkhau/markdown-svgbob", | ||
version="202112.1022", | ||
version="202406.1023", | ||
keywords="markdown svgbob extension", | ||
description="svgbob extension for Python Markdown", | ||
long_description=long_description, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This file is part of the markdown-svgbob project | ||
# https://github.com/mbarkhau/markdown-svgbob | ||
# | ||
# Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) - MIT License | ||
# Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) - MIT License | ||
# SPDX-License-Identifier: MIT | ||
"""markdown_svgbob extension. | ||
|
@@ -10,7 +10,7 @@ | |
diagrams in fenced code blocks. | ||
""" | ||
|
||
__version__ = "v202112.1022" | ||
__version__ = "v202406.1023" | ||
|
||
|
||
from markdown_svgbob.wrapper import text2svg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# This file is part of the markdown-svgbob project | ||
# https://github.com/mbarkhau/markdown-svgbob | ||
# | ||
# Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) - MIT License | ||
# Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) - MIT License | ||
# SPDX-License-Identifier: MIT | ||
import os | ||
import sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This file is part of the markdown-svgbob project | ||
# https://github.com/mbarkhau/markdown-svgbob | ||
# | ||
# Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) - MIT License | ||
# Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) - MIT License | ||
# SPDX-License-Identifier: MIT | ||
import re | ||
import copy | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This file is part of the markdown-svgbob project | ||
# https://github.com/mbarkhau/markdown-svgbob | ||
# | ||
# Copyright (c) 2019-2021 Manuel Barkhau ([email protected]) - MIT License | ||
# Copyright (c) 2019-2024 Manuel Barkhau ([email protected]) - MIT License | ||
# SPDX-License-Identifier: MIT | ||
|
||
# NOTE (mb 2019-05-16): This module is substantially shared with the | ||
|