-
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.
Merge pull request #6499 from nextcloud-libraries/fix/noid/rich-escape
fix: extract un-escaping of text/code nodes with XML-like content
- Loading branch information
Showing
3 changed files
with
69 additions
and
21 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
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] | ||
}) | ||
} | ||
} |