Skip to content

Commit

Permalink
Merge pull request #186 from LemmyNet/markdown-parsing
Browse files Browse the repository at this point in the history
Markdown Parsing
  • Loading branch information
SleeplessOne1917 authored Nov 12, 2024
2 parents 152f159 + 64e6996 commit 22e87ea
Show file tree
Hide file tree
Showing 15 changed files with 1,118 additions and 412 deletions.
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

0 comments on commit 22e87ea

Please sign in to comment.