Skip to content

Commit cfb7200

Browse files
authored
Merge pull request #3 from render-engine/move-readme-to-main
moves readme to the root
2 parents 966327f + be3df53 commit cfb7200

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
# Update output format to enable automatic inline annotations.
2525
- name: Run Ruff
2626
run: |
27-
ruff check --fix --output-format=github render_engine_makrdown
28-
ruff format render_engine_makrdown
27+
ruff check --fix --output-format=github render_engine_markdown
28+
ruff format render_engine_markdown
2929
3030
- name: Markdown Lint base-files
3131
uses: DavidAnson/markdownlint-cli2-action@v14

CODE_OF_CONDUCT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ representative at an online or offline event.
5959
## Enforcement
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
62-
reported to the community leaders responsible for enforcement at [email protected].
62+
reported to the community leaders responsible for enforcement at <[email protected]>.
6363
All complaints will be reviewed and investigated promptly and fairly.
6464

6565
All community leaders are obligated to respect the privacy and security of the
@@ -128,4 +128,4 @@ For answers to common questions about this code of conduct, see the FAQ at
128128
[v2.1]: https://www.contributor-covenant.org/version/2/1/code_of_conduct.html
129129
[Mozilla CoC]: https://github.com/mozilla/diversity
130130
[FAQ]: https://www.contributor-covenant.org/faq
131-
[translations]: https://www.contributor-covenant.org/translations
131+
[translations]: https://www.contributor-covenant.org/translations
File renamed without changes.

render_engine_markdown/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ class MarkdownPageParser(BasePageParser):
1313
"""
1414

1515
@staticmethod
16-
def parse(content: str, extras: dict[str, any] | None = None ) -> str:
16+
def parse(content: str, extras: dict[str, any] | None = None) -> str:
1717
"""Parses the content with the parser"""
1818
return markdown(
1919
content,
2020
extras=extras.get("markdown_extras", []) if extras else [],
21-
)
21+
)

0 commit comments

Comments
 (0)