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

templatejs

by yanhaijing ST3

Syntax highlight for template.js

Details

Installs

  • Total 271
  • Win 174
  • Mac 49
  • Linux 48
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 1 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 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

template-sublime

template.js plugin for sublime, click here to install.

How to install

Way 1: with Package Control

  1. Run “Package Control: Install Package” command, find and install templatejs plugin.

Way 2: with Package Control + Custom Repository:

  1. Run “Package Control: Add repository” and add https://github.com/yanhaijing/template-sublime
  2. Run “Package Control: Install Package” command, find and install templatejs plugin.

Way 3: download and copy

  1. Clone or [download] git repo into your packages folder (in ST2, find Browse Packages… menu item to open this folder)

Features

  • Syntax highlight

Support syntax highlight for template.js

Source code example

<h2>我的待办</h2>
<ul>
    <%list.forEach(function(item, index) {%>
        <li>
            <div class="row">
                <div class="col-5 <%=index % 2 ? 'text-secondary' : ''%>">
                    <%=item.text%>
                    <%:=item.text%>
                    <%abc:=item.text%>
                </div>
            </div>
        </li>
    <%})%>
</ul>
<a href="#" class="btn btn-dark add-todo">新增</a>

Highlighting effect

CHANGELOG

CHANGELOG.md

TODO

TODO.md

Contributor guide

开发时,将当前项目软连接到sublime的插件目录(菜单/Preference/Browse Packages)即可实时预览,可能需要重启

ln -s . xxx/Packages/User

发布时需要打tag,然后push到github即可

git tag x.y.z

Reference