Skip to content

Commit

Permalink
Add link to regex101.com for replace/find RE ref rdwatters#22
Browse files Browse the repository at this point in the history
  • Loading branch information
rdwatters committed Apr 30, 2017
1 parent bbd2363 commit 313b758
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions content/functions/findRe.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,8 @@ You can limit the number of matches in the list with a third parameter. The foll

{{% note %}}
Hugo uses Golang's [Regular Expression package](https://golang.org/pkg/regexp/), which is the same general syntax used by Perl, Python, and other languages but with a few minor differences for those coming from a background in PCRE. For a full syntax listing, see the [GitHub wiki for re2](https://github.com/google/re2/wiki/Syntax).

If you are just learning RegEx, or at least Golang's flavor, you can practice pattern matching in the browser at <https://regex101.com/>.
{{% /note %}}

<!-- Removed per request of @bep: https://github.com/spf13/hugo/issues/3188 -->
Expand Down
2 changes: 2 additions & 0 deletions content/functions/replacere.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ Replaces all occurrences of a regular expression with the replacement pattern.

{{% note %}}
Hugo uses Golang's [Regular Expression package](https://golang.org/pkg/regexp/), which is the same general syntax used by Perl, Python, and other languages but with a few minor differences for those coming from a background in PCRE. For a full syntax listing, see the [GitHub wiki for re2](https://github.com/google/re2/wiki/Syntax).

If you are just learning RegEx, or at least Golang's flavor, you can practice pattern matching in the browser at <https://regex101.com/>.
{{% /note %}}

0 comments on commit 313b758

Please sign in to comment.