Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wiki-js
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
wiki-js
Commits
30901095
Commit
30901095
authored
May 04, 2017
by
NGPixel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: Remove markdown from page contents items
parent
a8b8fc41
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
24 deletions
+26
-24
markdown.js
server/libs/markdown.js
+26
-24
No files found.
server/libs/markdown.js
View file @
30901095
...
...
@@ -111,10 +111,10 @@ const parseTree = (content) => {
let
content
=
''
let
anchor
=
''
if
(
heading
.
children
&&
heading
.
children
.
length
>
0
&&
heading
.
children
[
0
].
type
===
'link_open'
)
{
content
=
heading
.
children
[
1
].
content
content
=
removeMarkdown
(
heading
.
children
[
1
].
content
)
anchor
=
_
.
kebabCase
(
content
)
}
else
{
content
=
heading
.
content
content
=
removeMarkdown
(
heading
.
content
)
anchor
=
_
.
kebabCase
(
heading
.
children
.
reduce
((
acc
,
t
)
=>
acc
+
t
.
content
,
''
))
}
...
...
@@ -282,33 +282,13 @@ const parseMeta = (content) => {
return
results
}
module
.
exports
=
{
/**
* Parse content and return all data
*
* @param {String} content Markdown-formatted content
* @return {Object} Object containing meta, html and tree data
*/
parse
(
content
)
{
return
{
meta
:
parseMeta
(
content
),
html
:
parseContent
(
content
),
tree
:
parseTree
(
content
)
}
},
parseContent
,
parseMeta
,
parseTree
,
/**
/**
* Strips non-text elements from Markdown content
*
* @param {String} content Markdown-formatted content
* @return {String} Text-only version
*/
removeMarkdown
(
content
)
{
const
removeMarkdown
=
(
content
)
=>
{
return
mdRemove
(
_
.
chain
(
content
)
.
replace
(
/<!--
?([
a-zA-Z
]
+
)
:
(
.*
)
-->/g
,
''
)
.
replace
(
/```
[^
`
]
+```/g
,
''
)
...
...
@@ -323,6 +303,28 @@ module.exports = {
.
replace
(
/
\s\s
+/g
,
' '
)
.
value
()
)
}
module
.
exports
=
{
/**
* Parse content and return all data
*
* @param {String} content Markdown-formatted content
* @return {Object} Object containing meta, html and tree data
*/
parse
(
content
)
{
return
{
meta
:
parseMeta
(
content
),
html
:
parseContent
(
content
),
tree
:
parseTree
(
content
)
}
},
parseContent
,
parseMeta
,
parseTree
,
removeMarkdown
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment