diff options
author | Zoom <ZoomRmc@users.noreply.github.com> | 2023-03-28 14:37:49 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-28 13:37:49 +0200 |
commit | 4fc9f0c3a3c6f53bfb663e60775e3d7a75c56337 (patch) | |
tree | 246efcabf12f0901708798fa6b7b81e3970f9b42 | |
parent | 115cec17452dc13aed7a1300f7786177f886e9c7 (diff) | |
download | Nim-4fc9f0c3a3c6f53bfb663e60775e3d7a75c56337.tar.gz |
Docs: Mention Source Code Filters in `lib/String handling` (#21570)
Mention Source Code Filters in `String handling` ...as a viable solution for templating
-rw-r--r-- | doc/lib.md | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/lib.md b/doc/lib.md index d6ec408ec..bc78027a0 100644 --- a/doc/lib.md +++ b/doc/lib.md @@ -171,7 +171,9 @@ String handling * [strformat](strformat.html) Macro based standard string interpolation/formatting. Inspired by - Python's f-strings. + Python's f-strings.\ + **Note:** if you need templating, consider using Nim + [Source Code Filters (SCF)](filters.html). * [strmisc](strmisc.html) This module contains uncommon string handling operations that do not |