标签:style blog class code c ext
MarkdownPad is a full-featured Markdown editor for Windows.
Enjoy first-class Markdown support with easy access to Markdown syntax and convenient keyboard shortcuts.
import random
class CardGame(object):
""" a sample python class """
NB_CARDS = 32
def __init__(self, cards=5):
self.cards = random.sample(range(self.NB_CARDS), 5)
print ‘ready to play‘
Give them a try:
Ctrl+B
) and
Italic (Ctrl+I
)Ctrl+Q
)Ctrl+K
)Ctrl+1
, Ctrl+2
,
Ctrl+3
)Ctrl+U
and Ctrl+Shift+O
)Don‘t guess if your hyperlink syntax is correct; LivePreview will show you exactly what your document looks like every time you press a key.
Fonts, color schemes, layouts and stylesheets are all 100% customizable so you can turn MarkdownPad into your perfect editor.
MarkdownPad supports multiple Markdown processing engines, including standard Markdown, Markdown Extra (with Table support) and GitHub Flavored Markdown.
With a tabbed document interface, PDF export, a built-in image uploader, session management, spell check, auto-save, syntax highlighting and a built-in CSS management interface, there‘s no limit to what you can do with MarkdownPad.
Powered by Sublog
标签:style blog class code c ext
原文地址:http://www.cnblogs.com/basetd/p/3725264.html