mirror of
https://gitlab.com/bignutty/labscore.git
synced 2025-06-10 23:23:08 -04:00
oops
This commit is contained in:
parent
1362395228
commit
8cca54f66c
1 changed files with 1 additions and 1 deletions
|
@ -11,7 +11,7 @@ module.exports.highlight = function(content = ""){
|
||||||
|
|
||||||
module.exports.codeblock = function(type, content = ""){
|
module.exports.codeblock = function(type, content = ""){
|
||||||
if(!content.length) return "```" + type + "\n```"
|
if(!content.length) return "```" + type + "\n```"
|
||||||
return "```" + type + "\n" + content.toString().join('\n').replace(/\`/g, '`') + "\n```"
|
return "```" + type + "\n" + content.join('\n').replace(/\`/g, '`') + "\n```"
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports.link = function(url, masked, tooltip = ""){
|
module.exports.link = function(url, masked, tooltip = ""){
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue