Replies: 1 comment
-
I'm not very sure about how Electron app works but It seems like the \U and \L support is not included in Obsidian runtime. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello! I am trying to capitalise the first letters of sentences using the following expression:
"(?<=^|[.!?]\s|\n)([a-zA-Z])(?!.)"
->
"\U$1"
Doesnt seem to work, it return \U before the expression it caught (the equivalent to $1)
For instance:
aaaa. bbbb, cccc
will return \Uaaaa. \Ubbbb, cccc
Thanks for helping
Beta Was this translation helpful? Give feedback.
All reactions