0.3.3 • Published 11 years ago

color-marked v0.3.3

Weekly downloads
32
License
-
Repository
github
Last release
11 years ago

marked


Markdown parser with code hightlight form highlight.js and optional inline color support. It could be useful when you want to colorful your code in your email.

I'm using css-parse to parse the style file and cheerio to add the inline style.

install


$ git clone git@github.com:chemzqm/marked.git
$ cd marked
$ npm install

example


$ cat gfm_code.text 

``` js
var a = 'hello';
console.log(a + ' world');
`` 

$ marked --gfm --color gfm_code.text 
<pre><code class="language-js"><span class="keyword" style="color:#333;font-weight:bold;">var</span> a = <span class="string" style="color:#d14;">'hello'</span>;
console.log(a + <span class="string" style="color:#d14;">' world'</span>);</code></pre></span></span></span></code></pre>

Get more information from marked

For vim users


For convert the file content of markdown into html and copy them to your system clipboard, you can make an alias in your vimrc file. For example, if you are using vim (like me) under terminal, you have to install a terminal tool xclip at first, in the debain system, you can do that like this:

    sudo apt-get install xclip

Then add the code below to your vim profile, you can find it at $HOME/.vimrc

nnoremap <leader>md :call Markdown()<CR>
function! Markdown()
   exe "!cat " . shellescape(expand('%:p'), 1) . " | marked --gfm --color | xclip"
endfunction

Now, you can use command <leader>md to have the converted html contents directly copied into your system clipboard.

LICENSE


Copyright (c) 2011-2012, Christopher Jeffrey. (MIT License)

See LICENSE for more info.

0.3.3

11 years ago

0.3.2

11 years ago

0.3.1

11 years ago

0.3.0

11 years ago

0.2.0

11 years ago

0.1.4

11 years ago

0.1.3

11 years ago

0.1.2

11 years ago

0.1.1

11 years ago

0.1.0

12 years ago