File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 1
1
module MultilineStrings
2
2
3
- export @m_str
3
+ export @m_str , multiline
4
4
5
- const ETX = ' \x 03' # ASCII control character: End of Text
6
5
const DEFAULT_STYLE = :folded
7
6
const DEFAULT_CHOMP = :strip
8
7
9
8
"""
10
- multiline(str, style=$(repr (DEFAULT_STYLE)) , chomp=$(repr (DEFAULT_CHOMP)) ) -> AbstractString
9
+ multiline(str; style=$(repr (DEFAULT_STYLE)) , chomp=$(repr (DEFAULT_CHOMP)) ) -> AbstractString
11
10
12
- Create a multiline string according to the provided `style` and `chomp`. Works similarly to
13
- YAML multiline strings (also known as block scalars).
11
+ Manipulate a multiline string according to the provided `style` and `chomp`. Works similarly
12
+ to YAML multiline strings (also known as block scalars).
14
13
15
14
# Arguments
16
15
- `str::AbstractString`: The multiline string to be processed
27
26
"""
28
27
multiline(str, indicators) -> AbstractString
29
28
30
- Revise a multiline string according to the provided style and chomp encoded in the
29
+ Manipulate a multiline string according to the provided style and chomp encoded in the
31
30
`indicators` string.
32
31
33
32
# Arguments
You can’t perform that action at this time.
0 commit comments