-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdown Tips.html
115 lines (106 loc) · 5.05 KB
/
Markdown Tips.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Markdown Tips</title>
<link rel="stylesheet" href="/theme/css/main.css" />
<!--[if IE]>
<script src="https://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body id="index" class="home">
<a href="https://github.com/we-taper">
<img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub" />
</a>
<header id="banner" class="body">
<h1><a href="/">A Blog <strong>about coding & physics</strong></a></h1>
<nav><ul>
<li><a href="/pages/who-am-i.html">Who am I?</a></li>
<li class="active"><a href="/category/blogging.html">Blogging</a></li>
<li><a href="/category/many-boby-physics.html">Many Boby Physics</a></li>
<li><a href="/category/misc-course-notes.html">Misc Course Notes</a></li>
<li><a href="/category/programming.html">Programming</a></li>
</ul></nav>
</header><!-- /#banner -->
<section id="content" class="body">
<article>
<header>
<h1 class="entry-title">
<a href="/Markdown Tips.html" rel="bookmark"
title="Permalink to Markdown Tips">Markdown Tips</a></h1>
</header>
<div class="entry-content">
<footer class="post-info">
<abbr class="published" title="2014-02-21T14:00:00+08:00">
Published: 周五 21 二月 2014
</abbr>
<address class="vcard author">
By <a class="url fn" href="/author/wetaper.html">we.taper</a>
</address>
<p>In <a href="/category/blogging.html">Blogging</a>.</p>
<p>tags: <a href="/tag/markup-language.html">Markup Language</a> <a href="/tag/unfinished.html">unFinished</a> </p>
</footer><!-- /.post-info --> <h1>Markdown Tips</h1>
<ul>
<li>
<p>Using Markdown On Notepad++</p>
<p>At first I want to using markdown inside Vim. However, the
configuration and learning cost force me to turn to notepad++.
After some search, found two plugins:</p>
<ol>
<li>ViSimulator - Make notepad++ vim-like.
Provide some basic functions, enough for me. Available at
<a href="http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central">Notepad++ Plugin Site</a> as well as the built-in
Plugin Manager.</li>
<li>NppMarkdown - Preview markdown instantly inside notepad++.
Good. Although the parsing engine doesn't recognize "#"
as title mark. Alse, referenced link also not support. Pity.
Available at <a href="http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central">Notepad++ Plugin Site</a>. </li>
</ol>
<p>Installing is quite stright forward, guidance available at: <a href="http://sourceforge.net/apps/mediawiki/notepad-plus/index.php?title=Plugin_Central">Np++ Wiki - Plugin</a><br />
(Actually, a little guess would be enough to install plugins.) </p>
</li>
<li>
<p>Markup Language Translator</p>
<p>A tool to translate between different markup languages: <a href="http://marksy.arc90.com/">_Marksy</a>
(Also available as a Chrome Plugin)</p>
</li>
<li>
<p>On Chrome:</p>
<p>A very good editor: <em>Minimalist Markdown Editor</em> on Chrome Apps store.</p>
</li>
</ul>
</div><!-- /.entry-content -->
</article>
</section>
<section id="extras" class="body">
<div class="blogroll">
<h2>blogroll</h2>
<ul>
<li><a href="http://getpelican.com/">Pelican</a></li>
<li><a href="http://ovelinux.blog.sohu.com/">My Previous Blog</a></li>
</ul>
</div><!-- /.blogroll -->
<div class="social">
<h2>social</h2>
<ul>
<li><a href="we.taper[WhateverInsideIsUseless]gmail.com">My E-Mail (Don't click, copy link and alter it to correct form, thx)</a></li>
</ul>
</div><!-- /.social -->
</section><!-- /#extras -->
<footer id="contentinfo" class="body">
<address id="about" class="vcard body">
Proudly powered by <a href="http://getpelican.com/">Pelican</a>, which takes great advantage of <a href="http://python.org">Python</a>.
</address><!-- /#about -->
<p>The theme is by <a href="http://coding.smashingmagazine.com/2009/08/04/designing-a-html-5-layout-from-scratch/">Smashing Magazine</a>, thanks!</p>
</footer><!-- /#contentinfo -->
<script type="text/javascript">
var disqus_shortname = 'taper';
(function () {
var s = document.createElement('script'); s.async = true;
s.type = 'text/javascript';
s.src = 'https://' + disqus_shortname + '.disqus.com/count.js';
(document.getElementsByTagName('HEAD')[0] || document.getElementsByTagName('BODY')[0]).appendChild(s);
}());
</script>
</body>
</html>