alpha
Login
or
Join now
alice.pds.demo.boltless.dev
/
core
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
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
2
Pulls
1
Pipelines
readme fixes
author
Anirudh Oppiliappan
date
1 year ago
(Mar 6, 2025, 11:29 AM +0200)
commit
db0fb162
db0fb162b78de204b08c98fee0a9a9a99ec0db16
parent
9e6276dd
9e6276dd4e6f4872f737c4ba67ff3fe14dc61a0b
+5
-2
2 changed files
Expand all
Collapse all
Unified
Split
appview
pages
pages.go
readme.md
+3
-1
appview/pages/pages.go
View file
Reviewed
···
215
215
switch ext {
216
216
case ".md", ".markdown", ".mdown", ".mkdn", ".mkd":
217
217
htmlString = renderMarkdown(params.Readme)
218
218
+
params.Raw = false
219
219
+
params.HTMLReadme = template.HTML(bluemonday.UGCPolicy().Sanitize(htmlString))
218
220
default:
219
221
htmlString = string(params.Readme)
220
222
params.Raw = true
223
223
+
params.HTMLReadme = template.HTML(bluemonday.NewPolicy().Sanitize(htmlString))
221
224
}
222
222
-
params.HTMLReadme = template.HTML(bluemonday.NewPolicy().Sanitize(htmlString))
223
225
}
224
226
225
227
return p.executeRepo("repo/index", w, params)
+2
-1
readme.md
View file
Reviewed
···
1
1
# tangled
2
2
-
> git collaboration platform built on atproto
2
2
+
3
3
+
Hello Tanglers! This is the codebase for [Tangled](https://tangled.sh)—a code collaboration platform built on the [AT Protocol](https://atproto.com).