Skip to content

Instantly share code, notes, and snippets.

@jazzsequence
Last active December 23, 2015 22:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jazzsequence/6703116 to your computer and use it in GitHub Desktop.
Save jazzsequence/6703116 to your computer and use it in GitHub Desktop.
SublimeText 2 snippet for creating Pluralsight module .meta files -- copy to your /Packages/User folder
<snippet>
<content><![CDATA[
<?xml version="1.0" encoding="utf-8"?>
<module xmlns="http://pluralsight.com/sapphire/module/2007/11">
<author>${1:author-name}</author>
<title>${2:module-title}</title>
<description>${3:module-description}</description>
<clips>
<clip href="${4:course-slug}-${5:module-number}${6:module-clip}.wmv" title="${11:clip $6 title}" />
<clip href="${4:course-slug}-${5:module-number}${7:module-clip}.wmv" title="${12:clip $7 title}" />
<clip href="${4:course-slug}-${5:module-number}${8:module-clip}.wmv" title="${13:clip $8 title}" />
<clip href="${4:course-slug}-${5:module-number}${9:module-clip}.wmv" title="${14:clip $9 title}" />
<clip href="${4:course-slug}-${5:module-number}${10:module-clip}.wmv" title="${15:clip $10 title}" />
</clips>
</module>
]]></content>
<description>Pluralsight Module</description>
<!-- Optional: Set a tabTrigger to define how to trigger the snippet -->
<tabTrigger>pluralsight_module</tabTrigger>
<!-- Optional: Set a scope to limit where the snippet will trigger -->
<scope>text.plain - text.meta</scope>
</snippet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment