copy 默认不转义

This commit is contained in:
2betop 2020-04-29 15:24:28 +08:00
parent 79817f11ce
commit 5208627fa2
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ export default class Page extends React.Component<PageProps> {
action.actionType === 'copy' &&
(action.content || action.copy)
) {
env.copy && env.copy(filter(action.content || action.copy, ctx));
env.copy && env.copy(filter(action.content || action.copy, ctx, '| raw'));
}
}