markable

0.0.7 • Public • Published

Markable

npm gzip size install size downloads

Markalbe allows you to write markdown document in any language. Markable translate your non-English Markdown syntax related symbols into English, so that they can be parse by any markdown parser.

Read this in other languages: English | 简体中文

Demo

Checkout the demo to see markable in action.

Installation

npm

npm install -s markable

Usage

Node

var markable = require('markable');
console.log(markable('》 青山一道同云雨,明月何曾是两乡。')); // > 青山一道同云雨,明月何曾是两乡。

Browser

You can use markable with marked

<!doctype html>
<html>
<head>
  <meta charset="utf-8"/>
  <title>Marked Markable in the browser</title>
</head>
<body>
  <div id="content"></div>
  <script src="https://cdn.jsdelivr.net/npm/markable@0.0.7/markable.min.js"></script> 
  <script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script> 
  <script>
    var text = '》 青山一道同云雨,明月何曾是两乡。\n\n···js\n Hello World\n···';
    document.getElementById('content').innerHTML =
      marked(markable(text));
  </script> 
</body>
</html>

Contributing

Contributions are always welcome, no matter how large or small. Before contributing, please read the Contributing.

License

MIT

Readme

Keywords

Package Sidebar

Install

npm i markable

Weekly Downloads

6

Version

0.0.7

License

MIT

Unpacked Size

42.6 kB

Total Files

21

Last publish

Collaborators

  • guxi11