Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Sharkey
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dima Krasner
Sharkey
Commits
ece3ac96
Unverified
Commit
ece3ac96
authored
3 years ago
by
MeiMei
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Tune mfmToHtml (#7841)
* Tune mfmToHtml * typo * add
parent
da71d8f4
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/mfm/from-html.ts
+112
-12
112 additions, 12 deletions
src/mfm/from-html.ts
test/mfm.ts
+24
-0
24 additions, 0 deletions
test/mfm.ts
with
136 additions
and
12 deletions
src/mfm/from-html.ts
+
112
−
12
View file @
ece3ac96
...
@@ -5,7 +5,9 @@ import { URL } from 'url';
...
@@ -5,7 +5,9 @@ import { URL } from 'url';
const
urlRegex
=
/^https
?
:
\/\/[\w\/
:%#@$&?!()
\[\]
~.,=+
\-]
+/
;
const
urlRegex
=
/^https
?
:
\/\/[\w\/
:%#@$&?!()
\[\]
~.,=+
\-]
+/
;
const
urlRegexFull
=
/^https
?
:
\/\/[\w\/
:%#@$&?!()
\[\]
~.,=+
\-]
+$/
;
const
urlRegexFull
=
/^https
?
:
\/\/[\w\/
:%#@$&?!()
\[\]
~.,=+
\-]
+$/
;
export
function
fromHtml
(
html
:
string
,
hashtagNames
?:
string
[]):
string
{
export
function
fromHtml
(
html
:
string
,
hashtagNames
?:
string
[]):
string
|
null
{
if
(
html
==
null
)
return
null
;
const
dom
=
parse5
.
parseFragment
(
html
);
const
dom
=
parse5
.
parseFragment
(
html
);
let
text
=
''
;
let
text
=
''
;
...
@@ -19,6 +21,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
...
@@ -19,6 +21,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
function
getText
(
node
:
parse5
.
Node
):
string
{
function
getText
(
node
:
parse5
.
Node
):
string
{
if
(
treeAdapter
.
isTextNode
(
node
))
return
node
.
value
;
if
(
treeAdapter
.
isTextNode
(
node
))
return
node
.
value
;
if
(
!
treeAdapter
.
isElementNode
(
node
))
return
''
;
if
(
!
treeAdapter
.
isElementNode
(
node
))
return
''
;
if
(
node
.
nodeName
===
'
br
'
)
return
'
\n
'
;
if
(
node
.
childNodes
)
{
if
(
node
.
childNodes
)
{
return
node
.
childNodes
.
map
(
n
=>
getText
(
n
)).
join
(
''
);
return
node
.
childNodes
.
map
(
n
=>
getText
(
n
)).
join
(
''
);
...
@@ -27,6 +30,14 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
...
@@ -27,6 +30,14 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
return
''
;
return
''
;
}
}
function
appendChildren
(
childNodes
:
parse5
.
ChildNode
[]):
void
{
if
(
childNodes
)
{
for
(
const
n
of
childNodes
)
{
analyze
(
n
);
}
}
}
function
analyze
(
node
:
parse5
.
Node
)
{
function
analyze
(
node
:
parse5
.
Node
)
{
if
(
treeAdapter
.
isTextNode
(
node
))
{
if
(
treeAdapter
.
isTextNode
(
node
))
{
text
+=
node
.
value
;
text
+=
node
.
value
;
...
@@ -42,6 +53,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
...
@@ -42,6 +53,7 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
break
;
break
;
case
'
a
'
:
case
'
a
'
:
{
const
txt
=
getText
(
node
);
const
txt
=
getText
(
node
);
const
rel
=
node
.
attrs
.
find
(
x
=>
x
.
name
===
'
rel
'
);
const
rel
=
node
.
attrs
.
find
(
x
=>
x
.
name
===
'
rel
'
);
const
href
=
node
.
attrs
.
find
(
x
=>
x
.
name
===
'
href
'
);
const
href
=
node
.
attrs
.
find
(
x
=>
x
.
name
===
'
href
'
);
...
@@ -87,23 +99,111 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
...
@@ -87,23 +99,111 @@ export function fromHtml(html: string, hashtagNames?: string[]): string {
text
+=
generateLink
();
text
+=
generateLink
();
}
}
break
;
break
;
}
case
'
p
'
:
case
'
h1
'
:
text
+=
'
\n\n
'
;
{
if
(
node
.
childNodes
)
{
text
+=
'
【
'
;
for
(
const
n
of
node
.
childNodes
)
{
appendChildren
(
node
.
childNodes
);
analyze
(
n
);
text
+=
'
】
\n
'
;
}
break
;
}
case
'
b
'
:
case
'
strong
'
:
{
text
+=
'
**
'
;
appendChildren
(
node
.
childNodes
);
text
+=
'
**
'
;
break
;
}
case
'
small
'
:
{
text
+=
'
<small>
'
;
appendChildren
(
node
.
childNodes
);
text
+=
'
</small>
'
;
break
;
}
case
'
s
'
:
case
'
del
'
:
{
text
+=
'
~~
'
;
appendChildren
(
node
.
childNodes
);
text
+=
'
~~
'
;
break
;
}
case
'
i
'
:
case
'
em
'
:
{
text
+=
'
<i>
'
;
appendChildren
(
node
.
childNodes
);
text
+=
'
</i>
'
;
break
;
}
// block code (<pre><code>)
case
'
pre
'
:
{
if
(
node
.
childNodes
.
length
===
1
&&
node
.
childNodes
[
0
].
nodeName
===
'
code
'
)
{
text
+=
'
```
\n
'
;
text
+=
getText
(
node
.
childNodes
[
0
]);
text
+=
'
\n
```
\n
'
;
}
else
{
appendChildren
(
node
.
childNodes
);
}
}
break
;
break
;
}
default
:
// inline code (<code>)
if
(
node
.
childNodes
)
{
case
'
code
'
:
{
for
(
const
n
of
node
.
childNodes
)
{
text
+=
'
`
'
;
analyze
(
n
);
appendChildren
(
node
.
childNodes
);
}
text
+=
'
`
'
;
break
;
}
case
'
blockquote
'
:
{
const
t
=
getText
(
node
);
if
(
t
)
{
text
+=
'
>
'
;
text
+=
t
.
split
(
'
\n
'
).
join
(
`\n> `
);
}
}
break
;
break
;
}
case
'
p
'
:
case
'
h2
'
:
case
'
h3
'
:
case
'
h4
'
:
case
'
h5
'
:
case
'
h6
'
:
{
text
+=
'
\n\n
'
;
appendChildren
(
node
.
childNodes
);
break
;
}
// other block elements
case
'
div
'
:
case
'
header
'
:
case
'
footer
'
:
case
'
article
'
:
case
'
li
'
:
case
'
dt
'
:
case
'
dd
'
:
{
text
+=
'
\n
'
;
appendChildren
(
node
.
childNodes
);
break
;
}
default
:
// includes inline elements
{
appendChildren
(
node
.
childNodes
);
break
;
}
}
}
}
}
}
}
This diff is collapsed.
Click to expand it.
test/mfm.ts
+
24
−
0
View file @
ece3ac96
...
@@ -19,6 +19,30 @@ describe('toHtml', () => {
...
@@ -19,6 +19,30 @@ describe('toHtml', () => {
});
});
describe
(
'
fromHtml
'
,
()
=>
{
describe
(
'
fromHtml
'
,
()
=>
{
it
(
'
p
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<p>a</p><p>b</p>
'
),
'
a
\n\n
b
'
);
});
it
(
'
block element
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<div>a</div><div>b</div>
'
),
'
a
\n
b
'
);
});
it
(
'
inline element
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<ul><li>a</li><li>b</li></ul>
'
),
'
a
\n
b
'
);
});
it
(
'
block code
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<pre><code>a
\n
b</code></pre>
'
),
'
```
\n
a
\n
b
\n
```
'
);
});
it
(
'
inline code
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<code>a</code>
'
),
'
`a`
'
);
});
it
(
'
quote
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<blockquote>a
\n
b</blockquote>
'
),
'
> a
\n
> b
'
);
});
it
(
'
br
'
,
()
=>
{
it
(
'
br
'
,
()
=>
{
assert
.
deepStrictEqual
(
fromHtml
(
'
<p>abc<br><br/>d</p>
'
),
'
abc
\n\n
d
'
);
assert
.
deepStrictEqual
(
fromHtml
(
'
<p>abc<br><br/>d</p>
'
),
'
abc
\n\n
d
'
);
});
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment