tangled
alpha
login
or
join now
fuwn.net
/
germ
0
fork
atom
🦠 The Definitive Gemini Protocol Toolkit
gemini
gemini-protocol
gemtext
parser
zero-dependency
toolkit
ast
converter
html
markdown
cli
networking
0
fork
atom
overview
issues
pulls
pipelines
fix(ast): Improve trailing newline trimming
fuwn.net
6 months ago
f213db5e
6e7600e9
verified
This commit was signed with the committer's
known signature
.
fuwn.net
SSH Key Fingerprint:
SHA256:VPdFPyPbd6JkoMyWUdZ/kkTcIAt3sxjXD2XSAZ7FYC4=
+1
-1
1 changed file
expand all
collapse all
unified
split
src
ast
container.rs
+1
-1
src/ast/container.rs
···
158
158
}
159
159
}
160
160
161
161
-
if gemtext.ends_with('\n') && !gemtext.ends_with("\n\n") {
161
161
+
if gemtext.ends_with('\n') {
162
162
gemtext.pop();
163
163
}
164
164