-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.js
153 lines (116 loc) · 4.47 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
'use strict';
/**
* Convert JIRA markdown to Slack markdown
*
* @param {string} jiraMD The JIRA markdown
* @return {string} The Slack markdown
*/
function toSlack (jiraMD) {
let depths = [];
let lastDepth = 0;
return jiraMD
// Quotes
.replace(/\{quote\}/g, '```')
// Stolen from: https://github.com/kylefarris/J2M
// Un-ordered Lists
.replace(/^[ \t]*(\*+)\s+/gm, (match, stars) => `${Array(stars.length).join(' ')}• `)
.replace(/^-\s+/gm, () => '• ')
// Ordered lists
.replace(/^[ \t]*(#+)\s+/gm, (match, nums) => {
const curDepth = nums.length - 1;
if (curDepth === lastDepth) {
depths[curDepth] = depths[curDepth] !== undefined ? depths[curDepth] + 1 : 1;
} else if (curDepth > lastDepth) {
depths[curDepth] = 1;
} else {
depths = depths.slice(0, curDepth + 1);
depths[curDepth]++;
}
lastDepth = curDepth;
return `${Array(curDepth + 1).join(' ')}${depths[curDepth]}. `;
})
// Headers 1-6
.replace(/^h([0-6])\.(\s*)(.*)$/gm,
(match, level, spacing, content) => `\n${spacing}*${content}*\n`)
// Bold
.replace(/\*(\s*)(\S.*?\S)(\s*)\*/g, '$1*$2*$3')
// Italic
.replace(/_(\s*)(\S.*?\S)(\s*)_/g, '$1_$2_$3')
// Monospaced text
.replace(/\{\{(.+?)\}\}/g, '`$1`')
// Citations
.replace(/\?\?([^??]+)\?\?/g, '_-- $1_')
// Superscript
.replace(/\^([^^]*)\^/g, '^$1')
// Subscript
.replace(/~([^~]*)~/g, '_$1')
// Pre-formatted text
.replace(/{noformat}/g, '```')
// Named Links
.replace(/\[([^[\]|]+?)\|([^[\]|]+?)\]/g, '<$2|$1>')
// Un-named Links
.replace(/\[([^|{}\\^~[\]\s"`]+\.[^|{}\\^~[\]\s"`]+)\]/g, '<$1>')
// Smart Links
.replace(/\[([^[\]|]+?)\|([^[\]|]+?)\|(smart-link)\]/g, '<$1>')
// Strikethrough
.replace(/((\W)-|(^)-)( *)(\S.*?\S)( *)(-(\W)|-($))/gm, '$2$3$4~$5~$6$8')
// Code Block
.replace(/\{code(:([a-z]+))?\}([^]*)\{code\}/gm, '```$2$3```')
// Single Paragraph Blockquote
.replace(/^bq\.\s+/gm, '> ')
// Remove color: unsupported in md
.replace(/\{color:[^}]+\}([^]*?)\{color\}/gm, '$1')
// panel into table
.replace(/\{panel:title=([^}]*)\}\n?([^]*?)\n?\{panel\}/gm, '\n| $1 |\n| --- |\n| $2 |')
// table header
.replace(/^[ \t]*((?:\|\|.*?)+\|\|)[ \t]*$/gm, (match, headers) => {
const singleBarred = headers.replace(/\|\|/g, '|');
return `\n${singleBarred}\n${singleBarred.replace(/\|[^|]+/g, '| --- ')}`;
})
// remove leading-space of table headers and rows
.replace(/^[ \t]*\|/gm, '|');
}
/**
* Convert JIRA markdown to Slack markdown
*
* @param {string} slackMD The Slack markdown
* @return {string} The JIRA markdown
*/
function toJira (slackMD) {
return slackMD
// Quotes
.replace(/```/g, '{code}')
// Stolen from: https://github.com/kylefarris/J2M
// Un-ordered Lists
.replace(/^( *)• /gm, (match, spaces) => `*${Array((spaces.length / 2) + 1).join('*')} `)
// Ordered lists
.replace(/^( *)\d\.\s+/gm, (match, depth) => `#${Array((depth.length / 2) + 1).join('#')} `)
// Headers 1-6
.replace(/^\n?( *)\*([^*]+)\*\n/g,
(match, level, content) => `h${level.length}. ${content}`)
// Monospaced text
.replace(/`([^`]+)`/g, '{{$1}}')
// Citations
.replace(/_-- ([^(_)]+)_/g, '??$1??')
// Strikethrough
.replace(/((\W)~|(^)~)(\S.*?\S)(~(\W)|~($))/gm, '$2-$4-$6')
// Un-named Links
.replace(/<([^|]+)>/g, '[$1]')
// Named Links
.replace(/<(.+)\|(.+?)>/g, '[$2|$1]')
// Single Paragraph Blockquote
.replace(/^> /gm, 'bq. ')
// panel into table
.replace(/\{panel:title=([^}]*)\}\n?([^]*?)\n?\{panel\}/gm, '\n| $1 |\n| --- |\n| $2 |')
// table header
.replace(/^[ \t]*((?:\|\|.*?)+\|\|)[ \t]*$/gm, (match, headers) => {
const singleBarred = headers.replace(/\|\|/g, '|');
return `\n${singleBarred}\n${singleBarred.replace(/\|[^|]+/g, '| --- ')}`;
})
// remove leading-space of table headers and rows
.replace(/^[ \t]*\|/gm, '|');
}
module.exports = {
toSlack,
toJira
};