Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

GitHub flavored Markdown with plain'ol HTML knowledge! Boom!

NotificationsYou must be signed in to change notification settings

praveenpuglia/github_markdown_snippets

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helpful Sublime Text snippets to get you started with GitHub flavored Markdown by letting you type the plain old HTML tags.

Installation

Via Package Control

The easiest way is to install it viaPackage Control.

  • Go toCommand PaletteCtrl +Shift +P or +Shift +P
  • SelectPackage Control : Install Package
  • Search forGithub Markdown Snippets

Manual

  • Clone the repository or download theZIP
  • Extract the archive
  • Put it in yourPackages(Preferences > Browse Packages... ) directory.

Using with Emmet

If you have Emmet installed, tab triggers may not function as expected due tothis.

To get around the problem, go to

Preferences > Package Settings > Emmet > User Settings

and add the following in your settings file.

{    "disable_tab_abbreviations_for_scopes": "text.html.markdown"}

This should let markdown snippets take precedence over emmet's tab to expand abbreviations feature and provide correct snippets.

Note that any tab trigger not set by this plugin will be converted to HTML tags which is convenient for peoplewho want to use HTML tags inside Markdown files.

Usage

A consolidated guide is availablehere.

Type a tag name and hit tab. That's it!☺️

❄️ Long tags likeblockquote are shortened for power use.

List of Tab Triggers

h1     // Heading 1h2     // Heading 2h3     // Heading 3h4     // Heading 4h5     // Heading 5h6     // Heading 6

Heading 1

Heading 2

Heading 3

Heading 4

Heading 5
Heading 6
b         // Boldi         // Italicbq        // Blockquotestrike    // Strikeouthr        // Horizontal Rule, Divider

Bold Text

Italic Text

Put a nice, beautifulquote here...

Strike Through


code    // Inline Codepre     // Code Block with language based highlighting.

Inline Code Snippet

varmessage="Code Block";alert(message);
a      // Anchorimg    // Image

Link Title

Puppies are cute

ol       // Ordered Listul       // Unordered Listtable    // Table
  1. First Item
  2. Second Item
  3. Third Item
  • I
  • Love
  • Markdown
Column 1Column 2
Cell 1-1Cell 1-2
Cell 2-1Cell 2-2

[8]ページ先頭

©2009-2025 Movatter.jp