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

Wiki

by PogiNate ST2

A simple system for maintaining a flat-file personal wiki in Sublime Text 2

Details

  • 2015.01.09.23.16.38
  • github.​com
  • github.​com
  • 9 years ago
  • 2 hours ago
  • 12 years ago

Installs

  • Total 2K
  • Win 862
  • Mac 578
  • Linux 371
Apr 26 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
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 0 0 0 0 0 0 0 0
Mac 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 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 0 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

Sublime Wiki

A simple way to maintain a personal wiki in Sublime Text 2.

NOTE: Sublime Wiki is not actively maintained, as I no longer really use Sublime Text. (I went over to the Dark Side.)

This extension isn't designed to replace wikipedia, or even go on the web at all. This is a flat-file, no-nesting, no-nonsense system designed purely to give you (well, me) a place to catch fleeting thoughts and turn them into something useful. To keep it as fiddle-proof as possible, the list of features is intentionally kept very small.

In other words, It's job is to let you maintain a personal wiki without spending too much time on it. Thanks to Andy Hunt for the inspiration. If you haven't yet, I strongly recommend you read Pragmatic Thinking and Learning for more excellent tips on how to really use your brain.

How It Works

  1. Create a directory where you want to keep all your files. I recommend setting this up in DropBox or some similar service so it auto-syncs across your computers.
  2. in Sublime Text, Add your new Personal Wiki folder to a project and save that project. There! That doesn't do much, but it does make your sidebar list all your wiki pages for you.
  3. Create a file with a name like MainIndex.wiki in that directory. The name isn't important, the extension is. Write some stuff in that file, and make sure to put in some WikiWords.
  4. Any WikiWords (i.e. UpperCamelCase) will be converted to internal links.
    • By default, Ctrl+F11 or Ctrl+Enter are the keystrokes to folow a link.
      • Hyperlinks now open in your default browser and email links open in your default mail client. (thank you to stadja for getting that working! )
    • If a file doesn't exist, you'll be given a new buffer with the default text for a new page.
    • if the file does exist it's opened. Yeah.
  5. This system is sparse by design. There are only a few things that get marked:
    • WikiLinks
      • These are identified as markup.underline.internal.link.Wiki. You may need to add style rules to your favorite theme to have it render.
    • Email Links
      • Identified as string.quoted.link.email.Wiki
    • Web Links (i.e. Http:// or ftp:// links)
      • Identified as string.quoted.link.external.Wiki
    • Markdown-style **bold** __markings__ are used.
      • Identified as markup.bold.Wiki
    • For that matter, Markdown-esque _italic_ *strings* are also supported.
      • Identified as markup.italic.Wiki
    • “Double Quoted Strings”
      • Identified as string.quoted.double.Wiki

If Things Aren't Getting Highlighted

It's very possible that your favorite theme doesn't define styles for markup.bold, markup.italic, or even markup.underline.internal.link (although most themes catch that one, because it has link in it.) If this is the case you can edit your theme file pretty easily, and I've included a snippet to make it even easier.

All themes are stored as .tmTheme files, which are really just .plist files that have been renamed, which are really just .xml files.

ANYWAY

To add style rules for bold and italic wiki text to your favorite theme simply follow these steps:

  1. Open /Packages/favoriteTheme/favoriteTheme.tmTheme in Sublime Text 2.
  2. Do a quick search for markup.italic or markup.bold and make sure it's not there.
  3. Inside the <array> element place your cursor between the closing tag of one <dict> element and the opening tag of the next.
  4. Type dict{enter} and the snippet should pop up.
  5. Type “bold” (or italic) into the first completion slot. Watch the fancy joy of snippets that re-use one variable.
    • Note that one place where your bold or italic choice gets used is the <fontStyle> element. Make sure you're typing something that actually is a font style here. If you stick with bold or italic you should be fine.
  6. Hit tab to go to the color slot. This is where you decide what color works for you, and it has to be in hex.
  7. Save the file and restart ST2.

Now all your **bold** (or __bold__) text should be bold and all your _italic_ (or *italic*) text should be slanty. It's just that easy.

How You Could Help

  1. I would like to make the WikiWords linker more robust, and possibly find a way to have it identify (and therefore highlight) any words that are the names of other pages in the directory, so that you could use any word as a keyword, á la Tomboy.
  2. Take over this project! I haven't been maintaining it for quite a while now. If you would like to take up the reigns of SublimeWiki that would probably be a good thing.