alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Remove unnecessary escape
author
GearsDatapacks
committer
Louis Pilfold
date
1 year ago
(May 12, 2025, 10:29 AM +0100)
commit
f278fc23
f278fc23ee82c5f475b2e563e0178fb83a69c911
parent
d43aad34
d43aad34622589fc45b9a452cc9d2eca52c86aa9
+1
-1
1 changed file
Expand all
Collapse all
Unified
Split
compiler-core
src
docs.rs
+1
-1
compiler-core/src/docs.rs
View file
Reviewed
···
531
531
.unwrap_or_else(|| "".into());
532
532
533
533
// TODO: parse markdown properly and extract the text nodes
534
534
-
escape_html_content(raw_text.replace("```gleam", "").replace("```", ""))
534
534
+
raw_text.replace("```gleam", "").replace("```", "")
535
535
}
536
536
537
537
fn markdown_documentation(doc: &Option<(u32, EcoString)>) -> String {