-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: extract un-escaping of text/code nodes
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com> [skip ci]
- Loading branch information
1 parent
7033776
commit d75459d
Showing
2 changed files
with
22 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
/** | ||
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: AGPL-3.0-or-later | ||
*/ | ||
|
||
import { visit, SKIP } from 'unist-util-visit' | ||
|
||
export const remarkUnescape = function() { | ||
return function(tree) { | ||
visit(tree, (node) => node.type === 'text' || node.type === 'code', | ||
(node, index, parent) => { | ||
parent.children.splice(index, 1, { | ||
...node, | ||
value: node.value.replace(/</gmi, '<').replace(/>/gmi, '>'), | ||
}) | ||
return [SKIP, index + 1] | ||
}) | ||
} | ||
} |