Skip to content

Commit c769a4e

Browse files
committed
🔧 MAINTAIN: Update GitHub organisation
1 parent 43f956b commit c769a4e

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
pytest --cov=markdown_it --cov-report=xml --cov-report=term-missing
4747
- name: Upload to Codecov
48-
if: matrix.python-version == 3.7 && github.repository == 'ExecutableBookProject/markdown-it-py'
48+
if: matrix.python-version == 3.7 && github.repository == 'executablebooks/markdown-it-py'
4949
uses: codecov/codecov-action@v1
5050
with:
5151
name: markdown-it-py-pytests-py3.7

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ Big thanks to the authors of [markdown-it]:
8787

8888
Also [John MacFarlane](https://github.com/jgm) for his work on the CommonMark spec and reference implementations.
8989

90-
[github-ci]: https://github.com/ExecutableBookProject/markdown-it-py/workflows/Python%20package/badge.svg?branch=master
91-
[github-link]: https://github.com/ExecutableBookProject/markdown-it-py
90+
[github-ci]: https://github.com/executablebooks/markdown-it-py/workflows/Python%20package/badge.svg?branch=master
91+
[github-link]: https://github.com/executablebooks/markdown-it-py
9292
[pypi-badge]: https://img.shields.io/pypi/v/markdown-it-py.svg
9393
[pypi-link]: https://pypi.org/project/markdown-it-py
9494
[conda-badge]: https://anaconda.org/conda-forge/markdown-it-py/badges/version.svg
9595
[conda-link]: https://anaconda.org/conda-forge/markdown-it-py
96-
[codecov-badge]: https://codecov.io/gh/ExecutableBookProject/markdown-it-py/branch/master/graph/badge.svg
97-
[codecov-link]: https://codecov.io/gh/ExecutableBookProject/markdown-it-py
96+
[codecov-badge]: https://codecov.io/gh/executablebooks/markdown-it-py/branch/master/graph/badge.svg
97+
[codecov-link]: https://codecov.io/gh/executablebooks/markdown-it-py
9898
[black-badge]: https://img.shields.io/badge/code%20style-black-000000.svg
9999
[black-link]: https://github.com/ambv/black
100100

docs/architecture.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The difference is simple:
5151
- There are special token objects, "inline containers", having nested tokens.
5252
sequences with inline markup (bold, italic, text, ...).
5353

54-
See [token class](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/token.py)
54+
See [token class](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/token.py)
5555
for details about each token content.
5656

5757
In total, a token stream is:
@@ -69,8 +69,8 @@ to an AST.
6969

7070
More details about tokens:
7171

72-
- [Renderer source](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/renderer.py)
73-
- [Token source](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/token.py)
72+
- [Renderer source](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/renderer.py)
73+
- [Token source](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/token.py)
7474
- [Live demo](https://markdown-it.github.io/) - type your text and click `debug` tab.
7575

7676

@@ -96,7 +96,7 @@ and tried to do something yourself. We never reject with help to real developers
9696

9797
## Renderer
9898

99-
After the token stream is generated, it's passed to a [renderer](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/renderer.py).
99+
After the token stream is generated, it's passed to a [renderer](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/renderer.py).
100100
It then plays all the tokens, passing each to a rule with the same name as token type.
101101

102102
Renderer rules are located in `md.renderer.rules[name]` and are simple functions
@@ -172,9 +172,9 @@ This was mentioned in [Data flow](#data-flow), but let's repeat sequence again:
172172

173173
And somewhere between you can apply additional transformations :) . Full content
174174
of each chain can be seen on the top of
175-
[parser_core.py](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/parser_core.py),
176-
[parser_block.py](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/parser_block.py) and
177-
[parser_inline.py](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/parser_inline.py)
175+
[parser_core.py](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/parser_core.py),
176+
[parser_block.py](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/parser_block.py) and
177+
[parser_inline.py](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/parser_inline.py)
178178
files.
179179

180-
Also you can change output directly in [renderer](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/renderer.py) for many simple cases.
180+
Also you can change output directly in [renderer](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/renderer.py) for many simple cases.

docs/using.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ nested_tokens[0]
203203

204204
+++
205205

206-
After the token stream is generated, it's passed to a [renderer](https://github.com/ExecutableBookProject/markdown-it-py/tree/master/markdown_it/renderer.py).
206+
After the token stream is generated, it's passed to a [renderer](https://github.com/executablebooks/markdown-it-py/tree/master/markdown_it/renderer.py).
207207
It then plays all the tokens, passing each to a rule with the same name as token type.
208208

209209
Renderer rules are located in `md.renderer.rules` and are simple functions

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def get_version():
1616
description="Python port of markdown-it. Markdown parsing, done right!",
1717
long_description=open("README.md").read(),
1818
long_description_content_type="text/markdown",
19-
url="https://github.com/ExecutableBookProject/markdown-it-py",
19+
url="https://github.com/executablebooks/markdown-it-py",
2020
project_urls={"Documentation": "https://markdown-it-py.readthedocs.io"},
2121
author="Chris Sewell",
2222
author_email="[email protected]",

0 commit comments

Comments
 (0)