mirror of
https://github.com/zedeus/nitter.git
synced 2026-01-24 20:32:49 -05:00
Remove capture group from titleization regex
This commit is contained in:
@@ -9,7 +9,7 @@ import ../views/[general, preferences]
|
||||
|
||||
export preferences
|
||||
|
||||
let reTitleize = re"(?<![A-z])([a-z])"
|
||||
let reTitleize = re"(?<![A-z])[a-z]"
|
||||
|
||||
proc titleize(str: string): string =
|
||||
result = str
|
||||
|
||||
Reference in New Issue
Block a user