Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/Mark.elm
Original file line number Diff line number Diff line change
Expand Up @@ -1829,7 +1829,7 @@ string =
\desc ->
case desc of
DescribeString id range str ->
Outcome.Success (String.trim str)
Outcome.Success str

_ ->
Outcome.Failure NoMatch
Expand Down Expand Up @@ -1860,7 +1860,7 @@ string =
ParseBlock ->
Parser.map
(\( pos, str ) ->
DescribeString id pos str
DescribeString id pos (String.trim str)
)
(Parse.withRange
(Parse.withIndent
Expand All @@ -1873,7 +1873,7 @@ string =
ParseInTree ->
Parser.map
(\( pos, str ) ->
DescribeString id pos str
DescribeString id pos (String.trim str)
)
(Parse.withRange
(Parse.withIndent
Expand Down