ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Blogger

by wporter82 ST3

Formats and posts via GoogleAPI. Code snippets are formatted for SyntaxHighlighter.

Details

Installs

  • Total 645
  • Win 469
  • Mac 76
  • Linux 100
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 0 1 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

blogger-sublime-plugin

Plugin for Sublime Text 3 that formats and posts to a blog. Code snippets are formatted for use with SyntaxHighlighter.

This plugin is meant to make posting code snippits to a Blogger blog easier by auto-formatting for the web and using SyntaxHighlighter to make it more visible. A blogpost will be coming soon showing how to set it up.

Dependecies:


Formatting:
Here is an example of how formatting is done.

The first line will be the post title.

Typically a paragraph or short description of the code to come will be next. It can span multiple lines but should never be indented. Code snippets should be preceded with a language as a caption and will be used to determine what brush will be used to highlight the syntax.

Java: // Code should be indented by 1 or more tabs int a = 1;

// It can have blank lines in between but should
// always be indented
return true;

You can have normal text here before you add an output block. This block should look just like the code block but have “Output:” before the text.

Output: The output block should always be indented as well.

You can have as many code and output blocks as you wish. They should always have a blank line before and after to break up the flow.