Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MIME Normalizer
Manage
Activity
Members
Labels
Plan
Issues
1
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Code
JS Toolbox
MIME Normalizer
Merge requests
!22
"Rework normalisation logic to handle new seal templates"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
"Rework normalisation logic to handle new seal templates"
2-rework-normalisation-logic-to-handle-new-seal-templates
into
master
Overview
0
Commits
55
Pipelines
0
Changes
110+
Merged
Igor Markin
requested to merge
2-rework-normalisation-logic-to-handle-new-seal-templates
into
master
4 years ago
Overview
0
Commits
55
Pipelines
0
Changes
10
Expand
Closes
#2 (closed)
Edited
4 years ago
by
Igor Markin
0
0
Merge request reports
Viewing commit
58dc94bc
Prev
Next
Show latest version
10 files
+
45
−
69
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
10
Search (e.g. *.vue) (Ctrl+P)
58dc94bc
Add build
· 58dc94bc
Igor Markin
authored
4 years ago
dist/HTMLNormalizer/strategies/common.js
+
18
−
1
Options
@@ -18,7 +18,10 @@ exports.ATTRIBUTES_TO_KEEP = {
href
:
true
,
value
:
true
,
};
const
normalizeDocumentCommon
=
(
body
)
=>
{
const
normalizeDocumentCommon
=
(
body
,
sealContainerId
)
=>
{
if
(
sealContainerId
)
{
removeSeal
(
body
,
sealContainerId
);
}
/**
* Unwind Outlook safelink wrappers
*/
@@ -50,6 +53,20 @@ const normalizeDocumentCommon = (body) => {
}
};
exports
.
normalizeDocumentCommon
=
normalizeDocumentCommon
;
const
removeSeal
=
(
rootNode
,
sealContainerId
)
=>
{
const
queue
=
[
rootNode
];
while
(
queue
.
length
)
{
const
element
=
queue
.
shift
();
const
id
=
element
.
getAttribute
(
"
id
"
);
if
(
id
?.
includes
(
sealContainerId
))
{
element
.
parentNode
.
removeChild
(
element
);
break
;
}
for
(
const
node
of
element
.
childNodes
)
{
node
.
nodeType
===
1
&&
queue
.
push
(
node
);
}
}
};
/**
* Decides whether node should be removed
* @param element
Loading