mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-23 21:53:09 +02:00
Merge commit '7c62d6ef1654c0383eae474d3bd9ddf7754c1f30'
This commit is contained in:
3
docs/content/en/functions/common/index.md
Normal file
3
docs/content/en/functions/common/index.md
Normal file
@@ -0,0 +1,3 @@
|
||||
+++
|
||||
headless = true
|
||||
+++
|
8
docs/content/en/functions/common/regular-expressions.md
Normal file
8
docs/content/en/functions/common/regular-expressions.md
Normal file
@@ -0,0 +1,8 @@
|
||||
When specifying the regular expression, use a raw [string literal] (backticks) instead of an interpreted string literal (double quotes) to simplify the syntax. With an interpreted string literal you must escape backslashes.
|
||||
|
||||
Go's regular expression package implements the [RE2 syntax]. The RE2 syntax is a subset of that accepted by [PCRE], roughly speaking, and with various [caveats]. Note that the RE2 `\C` escape sequence is not supported.
|
||||
|
||||
[caveats]: https://swtch.com/~rsc/regexp/regexp3.html#caveats
|
||||
[PCRE]: https://www.pcre.org/
|
||||
[RE2 syntax]: https://github.com/google/re2/wiki/Syntax/
|
||||
[string literal]: https://go.dev/ref/spec#String_literals
|
Reference in New Issue
Block a user