mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
0f65e4c9f3
Reintroduce HackMyCore, dropping the interim submodule, and reorganize and improve tests.
16 lines
395 B
CoffeeScript
16 lines
395 B
CoffeeScript
###*
|
|
Inline Markdown-to-Chalk conversion routines.
|
|
@license MIT. See LICENSE.md for details.
|
|
@module utils/md2chalk
|
|
###
|
|
|
|
|
|
MD = require 'marked'
|
|
CHALK = require 'chalk'
|
|
LO = require 'lodash'
|
|
|
|
module.exports = ( v, style, boldStyle ) ->
|
|
boldStyle = boldStyle || 'bold'
|
|
temp = v.replace(/\*\*(.*?)\*\*/g, LO.get( CHALK, boldStyle )('$1'))
|
|
if style then LO.get( CHALK, style )(temp) else temp
|