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

Markdown Code Packer

by motine ST3

include source code files unobtrusively in markdown notes (a Sublime Text 3 plugin)

Labels markdown

Details

Installs

  • Total 624
  • Win 330
  • Mac 180
  • Linux 114
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 0 1 0 0 0 0 1 0 0 0 0 1 0 0 1 0 0 0 1 0 0 0 0 0 1 0 0 0 2 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 1
Mac 0 1 0 0 0 0 0 0 0 1 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 1
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 1 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

Readme

Source
raw.​githubusercontent.​com

Markdown Code Packer

Packs code and files into markdown documents. This Sublime 3 plugin converts code blocks to compressed, single-line comments to improve visibility.

Motivation

For my personal note taking and note sharing, I often want to save all project code in my Markdown documents. But too many code blocks disrupt the reading flow and there is no way to extract all files. This plugin allows to pack and unpack code blocks/files in a document.

Examples:

  • show off a technical spike), but also keep the needed but boring config files
  • include a lengthy CSV table you want to send along for reference
  • archive a set of files as a starter template for a project
  • include a small asset in your note, so you don't have to keep it as an additional file
  • archive the contents of an external blog article without overloading your document

Up until now, I solved these use cases by creating a gist, put files in an assets/ folder or zip the whole document along with its files. This plugin removes the need for these.

before:

uncompressed code block

after:

packed content

Features

  • Markdown Code Packer: Pack: Pack selected code block(s)
  • Markdown Code Packer: Unpack: Unpack selected code block(s)
  • Markdown Code Packer: Extract Selection to Folder: Extract selected blocks to a folder (filename can include relative path)
  • Markdown Code Packer: Extract All to Folder: Extract all blocks in the document to a folder
  • Markdown Code Packer: Pack Folder: Insert all files of a folder into the document

You can also include binary files (e.g. images)

Pack/Unpack

Extract All to Folder

Pack Folder

Demo Documents

  • Test: Use for playing around - also includes an a binary file (image) to extract
  • My Mac Setup: Includes packed config files
  • Webpack: Includes mini-projects, make sure to select one and then extract it to a folder

Installation

  • With Package Control: Open the command palette and run the Package Control: Install Package command, find and install the Markdown Code Packer plugin.
  • Manually: Clone or download git repository into your packages folder (to find the folder run the command Preferences - Browse Packages).

If you are wondering what [[202003271748]] means: These are references to other notes (see Sublime ZK for more info).

Format

Unpacked format:

`optional_filename`:

```optional_type
// code

```

Packed format:

For packing I chose deflate and then base64 (see [assets/FormatChoice.md] for more info).

Contribute

Please create an issue if you find a bug or fix it and make a pull request. For direct contact, please find my email on tomrothe.de.

TODO

  • Use functools.partial (MarkdownCodePacker.py#L37)
  • use file_path variable from extract_variables
  • VSCode plugin?
  • Command line tool (with brew formula)?
  • remember/infer file type for fenced code blocks