Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix readme. #86

Merged
merged 1 commit into from
Feb 10, 2022
Merged
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
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,19 +53,22 @@ func unexclaim(_ node: Node) -> Node {

case let .element(tag, attrs, children):
// Recursively transform all of the children of an element
return .element(tag, attrs, children.map(unexclaim))
return .element(tag, attrs, unexclaim(children))

case let .fragment(children):
// Recursively transform all of the children of a fragment
return .fragment(children.map(unexclaim))

case let .raw(string), .text(string):
case let .raw(string):
// Transform text nodes by replacing exclamation marks with periods.
return string.replacingOccurrences(of: "!", with: ".")
return .raw(string.replacingOccurrences(of: "!", with: "."))
case let .text(string):
// Transform text nodes by replacing exclamation marks with periods.
return .text(string.replacingOccurrences(of: "!", with: "."))
}
}

unexclaim(document) // Node
unexclaim(document)
```

Once your document is created you can render it using the `render` function:
Expand Down