Skip to content

Trailing whitespace can cause numeric parsing to fail #1

Description

@jonlidgard

I fixed the problem in Element by using a computed property to remove whitespace on set

var _content: String = ""
var content: String {
get {
return _content
}
set (newValue){
_content = newValue.trimmingCharacters(in: .whitespacesAndNewlines)
}
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions