From 7770c57856f2ee805372cc610d5aa71fe7df5fa2 Mon Sep 17 00:00:00 2001 From: freedit-dev Date: Mon, 3 Feb 2025 13:58:14 +0800 Subject: [PATCH] fix Code blocks err #227 (#323) * fix Code blocks https://github.com/redlib-org/redlib/issues/227 * add pulldown-cmark * add pulldown-cmark * fix Code blocks err #227 * add pre style for post codeblock * Update style.css (fix Code blocks err #227 ) --------- Co-authored-by: Matthew Esposito --- Cargo.lock | 19 +++++++++++++++++++ Cargo.toml | 1 + src/utils.rs | 10 +++++++++- static/style.css | 7 +++++++ 4 files changed, 36 insertions(+), 1 deletion(-) diff --git a/Cargo.lock b/Cargo.lock index 24791b4..6578d17 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1302,6 +1302,24 @@ dependencies = [ "unicode-ident", ] +[[package]] +name = "pulldown-cmark" +version = "0.12.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f86ba2052aebccc42cbbb3ed234b8b13ce76f75c3551a303cb2bcffcff12bb14" +dependencies = [ + "bitflags", + "memchr", + "pulldown-cmark-escape", + "unicase", +] + +[[package]] +name = "pulldown-cmark-escape" +version = "0.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "007d8adb5ddab6f8e3f491ac63566a7d5002cc7ed73901f72057943fa71ae1ae" + [[package]] name = "quick-error" version = "1.2.3" @@ -1383,6 +1401,7 @@ dependencies = [ "once_cell", "percent-encoding", "pretty_env_logger", + "pulldown-cmark", "regex", "rinja", "route-recognizer", diff --git a/Cargo.toml b/Cargo.toml index 843b9c9..fc9074b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -47,6 +47,7 @@ rss = "2.0.7" arc-swap = "1.7.1" serde_json_path = "0.7.1" async-recursion = "1.1.1" +pulldown-cmark = { version = "0.12.0", features = ["simd", "html"], default-features = false } common-words-all = { version = "0.0.2", default-features = false, features = ["english", "one"] } hyper-rustls = { version = "0.24.2", features = [ "http2" ] } tegen = "0.1.4" diff --git a/src/utils.rs b/src/utils.rs index 23db3d0..0aa3159 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -743,7 +743,15 @@ pub async fn parse_post(post: &Value) -> Post { get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else { - rewrite_urls(&val(post, "selftext_html")) + let selftext = val(post, "selftext"); + if selftext.contains("```") { + let mut html_output = String::new(); + let parser = pulldown_cmark::Parser::new(&selftext); + pulldown_cmark::html::push_html(&mut html_output, parser); + rewrite_urls(&html_output) + } else { + rewrite_urls(&val(post, "selftext_html")) + } }; // Build a post using data parsed from Reddit post API diff --git a/static/style.css b/static/style.css index a9d893a..76b55dd 100644 --- a/static/style.css +++ b/static/style.css @@ -1199,6 +1199,13 @@ a.search_subreddit:hover { overflow-wrap: anywhere; } +.post_body pre { + background: var(--background); + overflow-x: auto; + margin: 10px 0; + padding: 10px; +} + .post_body img { max-width: 100%; display: block;