Markdown Toc
# Phodal 专用编辑器 GitHub 地址:[https://github.com/phodal/mdpub](https://github.com/phodal/mdpub) 更多精彩内容请
关注
扫码
: ![图注:Phodal's Wechat](http://articles.phodal.com/qrcode.jpg) ## 一些示例 单行高亮:``phodal`` 测试 这是一个脚注的测试 [^note] ```javascript (function() { var input, output; var converter = new showdown.Converter(); function updateOutput() { output.innerHTML = converter.makeHtml(input.value); } document.addEventListener("DOMContentLoaded", function(event) { input = document.getElementById('input'); output = document.getElementById('output'); input.addEventListener('input', updateOutput, false); input.addEventListener('keydown', updateOutput, false); updateOutput(); }); })(); ``` ``` echo 'hello,world' ``` 下面是一个列表的示例,技术栈: 1. Google Code Prettify 2. Showdown.js 3. Clipboard 另外一个列表: - Google Code Prettify - Showdown.js - Clipboard 表格示例: | h1 | h2 | h3 | |-------|---------|---------| | 100 | [a][1] | ![b][2] | | *foo* | **bar** | ~~baz~~ | | *foo* | **bar** | ~~baz~~ | ### Todo Example - [ ] Mercury - [x] Venus - [x] Earth (Orbit/Moon) - [x] Mars - [ ] Jupiter - [ ] Saturn [^note]: 测试是指测试
复制