All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
27 lines
524 B
JavaScript
27 lines
524 B
JavaScript
var inConstruct = 'phrasing'
|
|
var notInConstruct = ['autolink', 'link', 'image', 'label']
|
|
|
|
exports.unsafe = [
|
|
{
|
|
character: '@',
|
|
before: '[+\\-.\\w]',
|
|
after: '[\\-.\\w]',
|
|
inConstruct: inConstruct,
|
|
notInConstruct: notInConstruct
|
|
},
|
|
{
|
|
character: '.',
|
|
before: '[Ww]',
|
|
after: '[\\-.\\w]',
|
|
inConstruct: inConstruct,
|
|
notInConstruct: notInConstruct
|
|
},
|
|
{
|
|
character: ':',
|
|
before: '[ps]',
|
|
after: '\\/',
|
|
inConstruct: inConstruct,
|
|
notInConstruct: notInConstruct
|
|
}
|
|
]
|