55This model provides some miscellaneous text processing routines not
66provided by core Raku. (Note it replaces the now-deprecated ` Text::More ` module.)
77
8- Note this is version 2.0.0 which introduces a new API 2 for
9- the ' strip-comment' routine. See the examples below for its use.
8+ Note this is version ` 2.0.0 ` which introduces a new API 2 for
9+ the ` strip-comment ` routine. See the examples below for its use.
1010The old signature is still usable, but it is deprecated
11- and will be removed in version 3.0.0.
11+ and will be removed in version ` 3.0.0 ` .
1212
1313## Synopsis
1414
@@ -20,8 +20,8 @@ may also be exported:
2020
2121``` raku
2222use Text::More : strip-comment;
23- # the '#' is the default comment character
24- my $ line = " some text # a comment" ;
23+ # the '#' is the default comment character
24+ my $ line = " some text # a comment" ;
2525$ line = strip-comment $ line ;
2626say $ line # output: << some text >>
2727```
@@ -57,10 +57,6 @@ $line = strip-comment $line
5757say $ line # output: <<text 1 >>
5858```
5959
60-
61-
62-
63-
6460## Installation
6561
6662``` Raku
@@ -82,7 +78,7 @@ p6doc Text::Utils
8278- ` Text::Emotion `
8379- ` Text::Levenshtein::Damerau `
8480- ` Text::MiscUtils `
85- - ` Text::More ` (deprecated)
81+ - ` Text::More ` (deprecated by ` Text::Utils ` )
8682- ` Text::Table::List `
8783- ` Text::Table::Simple `
8884- ` Text::Tabs `
0 commit comments