Skip to content

Add RawHTML Component #497

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 19 commits into from
May 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.html linguist-generated=true
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ yarn-error.log*

# Jupyter Notebook
.ipynb_checkpoints

.yarn
7 changes: 7 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0

hooks:
- id: trailing-whitespace
exclude: \.html$
- id: end-of-file-fixer
exclude: \.html$
- id: check-json
- id: check-added-large-files
args: ['--maxkb=20000']
- id: check-yaml
- id: double-quote-string-fixer
exclude: \.html$

- repo: https://github.com/pre-commit/mirrors-prettier
rev: 'v3.0.0-alpha.9-for-vscode'
hooks:
- id: prettier
exclude: \.html$

files: "\\.(\
css|less|scss\
Expand All @@ -36,3 +41,5 @@ repos:
|md|markdown|mdown|mkdn\
|mdx\
)$"
# exclude files ending with .html
exclude: \.html$
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
"date-fns-tz": "^2.0.0",
"framer-motion": "^10.12.5",
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^1.4.0",
"next": "^13.3.0",
"next-mdx-remote": "^4.4.1",
"react": "^18.2.0",
Expand Down
Loading