chore: schemas, styles, cleanup

This commit is contained in:
Cory Dransfeldt 2024-10-14 16:43:11 -07:00
parent e0c0c5ccd2
commit 7caf3370ff
No known key found for this signature in database
17 changed files with 123 additions and 55 deletions

View file

@ -32,8 +32,8 @@ WITH syndication_data AS (
CASE
WHEN l.mastodon IS NOT NULL THEN
' via @' || split_part(l.mastodon, '@', 2) || '@' || split_part(split_part(l.mastodon, 'https://', 2), '/', 1)
ELSE ''
END, CONCAT(' via ', l.name), (
ELSE CONCAT(' via ', l.name)
END, ' ', (
SELECT array_to_string(
array_agg('#' || initcap(replace(t.name, ' ', ''))), ' '
)