Skip to content

Commit

Permalink
add dependency in requirement.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
Clément committed Jul 15, 2024
1 parent 0866cd9 commit 434aea2
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 8 deletions.
11 changes: 6 additions & 5 deletions content/pages/a_page.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ This is markdown.
</article>


{{ page_header(markdown('
{{ page_header(
markdown('
test
#test
####test

')) }}
**test**
`test`
')
) }}
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Django==5.0.6
Django==4.2.9
django-distill
django_vite_plugin==3.0.0
markdown2[all]==2.4.13
whitenoise==6.7.0
Jinja2==3.1.4
django_jinja_markdown.extensions.MarkdownExtension
django-jinja-markdown
25 changes: 24 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,30 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": [
"./*"
],
"@s:django_jinja_markdown/*": [
"./env/lib/python3.9/site-packages/django_jinja_markdown/static/django_jinja_markdown/*"
],
"@t:django_jinja_markdown/*": [
"./env/lib/python3.9/site-packages/django_jinja_markdown/templates/django_jinja_markdown/*"
],
"@s:django_distill/*": [
"./env/lib/python3.9/site-packages/django_distill/static/django_distill/*"
],
"@t:django_distill/*": [
"./env/lib/python3.9/site-packages/django_distill/templates/django_distill/*"
],
"@s:jssg/*": [
"./jssg/static/jssg/*"
],
"@t:jssg/*": [
"./jssg/templates/jssg/*"
]
}
},
"include": [
"content/front/"
Expand Down

0 comments on commit 434aea2

Please sign in to comment.