markdown-js icon indicating copy to clipboard operation
markdown-js copied to clipboard

A Markdown parser for javascript

Results 101 markdown-js issues
Sort by recently updated
recently updated
newest added

I'm looking for how to tell markdown.js to not "safify" html code. The README.md doesn't tell me, and the source it points me to instead certainly doesn't make it an...

I'm sorry I didn't find the code layout, excuse me whether to support the code?

Although I love the architecture of markdown-js, I think the basics are quite difficult to grasp for a newbie. There is no clear spec for jsonml to find anywhere (at...

1. test 2. test 3. test This creates a bullet list for me. How come this doesn't created a number 1,2,3 list?

When typing a list that begins with a number other than 1, the numbering is not preserved by the markdown parser. I understand this is typical of markdown, however, the...

lists

I've tried different types of tables that other markdown implementations support, but i'm not recieving any real table markup. tried inserting html itself, or using the pipe characters the only...

``` ghmarkdown ##关于博客的编辑 目前博客基础的增、删、改、查功能还差一个就是改。但是因为时间关系,今天只更新了删除已有博客的功能。明天或者后天计划上线博客后台的编辑功能。 ###基本思路 * 现有的博客发布功能可以复用作为博客的编辑页面; * 将在现有发布博客的路径后面带上需要修改的博客的id,然后从数据库将相关内容拉取出来然后回显。这样又可以复用细节的部分接口,啧啧,post和get有点乱。排到后面的优化工作中 * 博客的修改将是一个复杂的过程(我估计是)。首先,内容进入之后,肯定要考虑复用发布文章的接口方法之类,这样就得先优化部分接口 * 根据参数中的id是否为空来判断是新增还是修改。新增的话就忽略了,如果是修改的话,需要先修改博客文件然后再修改博客列表。大致的代码: blogDB.blogList.forEach(function(item){ //修改item项 saveBlogList(..,..,functon(data){ if(data==1){ saveBlogContent(..,..,function(){ //callBack }); } }); }); 博客的修改功能大致如此。 ```

Gruber fail parsing links in this block of text: ``` [Link](/url) "then text" then ("[link again](/url)") ``` renders as: ``` Link ``` while should as: ``` Link "then text" then...

parse following text file(a.md) eat 100% cpu: `````` ``` - (void)handleOrientation:(NSNotification *)notification { switch (currentOrientation) { case UIInterfaceOrientationPortrait: rotation = 0; break; case UIInterfaceOrientationPortraitUpsideDown: rotation = M_PI; break; case UIInterfaceOrientationLandscapeLeft:...