Skip to content
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

Markdown Parsing #186

Merged
merged 28 commits into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ee8322d
Add markdown deps
SleeplessOne1917 Sep 18, 2024
2c5a603
Initial post body
SleeplessOne1917 Sep 19, 2024
8350a51
Merge branch 'main' into markdown-parsing
SleeplessOne1917 Sep 25, 2024
b678ca4
Bump deps
SleeplessOne1917 Sep 25, 2024
e54deea
Merge branch 'main' into markdown-parsing
SleeplessOne1917 Oct 1, 2024
0e10938
Merge branch 'main' into markdown-parsing
SleeplessOne1917 Oct 5, 2024
7cc759a
dep bump
SleeplessOne1917 Oct 5, 2024
acd05b4
Dep bump
SleeplessOne1917 Oct 9, 2024
bd5b421
put markdown content in own component
SleeplessOne1917 Oct 10, 2024
1f754da
Make markdown content tailwind classes easy to manage
SleeplessOne1917 Oct 11, 2024
f78e6f2
Bump
SleeplessOne1917 Oct 30, 2024
21218ed
Another dep bump to avoid build break
SleeplessOne1917 Nov 5, 2024
6a7b576
Add monospace styles
SleeplessOne1917 Nov 5, 2024
53eb51d
Merge from main
SleeplessOne1917 Nov 5, 2024
fc83664
Fix wasm-bindgen conflict
SleeplessOne1917 Nov 7, 2024
edead98
Create helper macro to cut down on repitition
SleeplessOne1917 Nov 7, 2024
9d7a97b
Revert "Create helper macro to cut down on repitition"
SleeplessOne1917 Nov 7, 2024
9caa430
Blockquote style
SleeplessOne1917 Nov 8, 2024
bdad3da
List styles
SleeplessOne1917 Nov 8, 2024
050625a
Link styles
SleeplessOne1917 Nov 8, 2024
cd1c4c5
Image styles
SleeplessOne1917 Nov 8, 2024
f640194
Table class
SleeplessOne1917 Nov 9, 2024
da35f03
Merge latest from main
SleeplessOne1917 Nov 10, 2024
44fef7c
Spoiler
SleeplessOne1917 Nov 11, 2024
114fc81
Use css instead of classes
SleeplessOne1917 Nov 11, 2024
34ee24b
Style tweaks
SleeplessOne1917 Nov 11, 2024
206d3f3
Bump versions
SleeplessOne1917 Nov 11, 2024
64e6996
Fix formatting failure
SleeplessOne1917 Nov 12, 2024
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
974 changes: 735 additions & 239 deletions Cargo.lock

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ actix-web = { version = "4.9", features = ["macros"], optional = true }
actix-session = { version = "0.10", features = [
"cookie-session",
], optional = true }
tokio = { version = "1.39", optional = true, features = ["macros"] }
tokio = { version = "1.41", optional = true, features = ["macros"] }
strum = { version = "0.26", features = ["derive"] }
trait-set = "0.3"
leptos-use = "0.13"
Expand All @@ -35,6 +35,12 @@ web-sys = { version = "0.3", optional = true, features = ["Url"] }
leptos-fluent = { version = "0.1", features = ["actix"] }
fluent-templates = "0.11"
chrono = "0.4.38"
markdown-it = "0.6"
markdown-it-sup = "1"
markdown-it-sub = "1"
markdown-it-ruby = "1"
markdown-it-block-spoiler = "1"
markdown-it-footnote = "0.2"

[features]
default = ["ssr"]
Expand Down
9 changes: 5 additions & 4 deletions end2end/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.47.2",
"@types/node": "^22.5.5",
"typescript": "^5.6.2"
}
"@playwright/test": "^1.48.2",
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}
6 changes: 3 additions & 3 deletions end2end/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"devDependencies": {
"@savvywombat/tailwindcss-grid-areas": "^4.0.0",
"daisyui": "^4.12.10",
"daisyui": "^4.12.14",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.12"
"tailwindcss": "^3.4.14"
},
"scripts": {
"fmt": "prettier . --write"
Expand Down
50 changes: 25 additions & 25 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading