SkillAgentSearch skills...

Nunjucks

A Sublime Text package for Nunjucks templating engine.

Install / Use

/learn @alsolovyev/Nunjucks
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Nunjucks

A Sublime Text package for Nunjucks templating engine.

LICENSE LICENSE Tag Downloads

Nunjucks

Features

  • enhanced syntax highlighting
  • autocompletions for built in tags, filters, functions
  • additional snippets
  • additional keybindings
  • smart indentations

Installation

Via package control (recommended):

  • open command palette
  • select Package Control: Install Packages
  • search for Nunjucks

Via GitHub repository:

  • open command palette
  • select Package Control: Add Repository
  • paste https://github.com/alsolovyev/Nunjucks into the field that opens and press enter
  • open command palette
  • select Package Control: Install Packages
  • search for Nunjucks

* to update the package Package Control: Upgrade Package select Nunjucks

Manually download sublime-package file:

  • download sublime-package file: Nunjucks.sublime-package
  • move it into your Sublime Text Installed Packages directory
    • Windows: %APPDATA%\Sublime Text 3\Installed Packages
    • OS X: ~/Library/Application\ Support/Sublime\ Text\ 3/Installed\ Packages
    • Linux: ~/.config/sublime-text-3/Installed Packages

Manually download repository:

  • clone repository
  • extract it into your Sublime Text Packages directory
    • Windows: %APPDATA%\Sublime Text 3\Packages
    • OS X: ~/Library/Application\ Support/Sublime\ Text\ 3/Packages
    • Linux: ~/.config/sublime-text-3/Packages

Documentation

Syntaxes

Filters

You can create your own filters or use one of the built-in:

  • abs - Return the absolute value of the argument
  • batch - Return a list of lists with the given number of items
  • capitalize - Make the first letter uppercase
  • center - Center the value in a field of a given width
  • default - Return default if value is undefined
  • dictsort - Sort a dict and yield (key, value) pairs
  • dump - Call JSON.stringify on an object and dump the result into the template
  • escape - Convert the characters &, <, >, , and in strings to HTML-safe sequences
  • first - Get the first item in an array or the first letter if it's a string
  • float - Convert a value into a floating point number
  • forceescape - Enforce HTML escaping
  • groupby - Group a sequence of objects by a common attribute
  • indent - Indent a string using spaces
  • int - Convert the value into an integer
  • join - Return a string which is the concatenation of the strings in a sequence
  • last - Get the last item in an array or the last letter if it's a string
  • length - Return the length of an array or string, or the number of keys in an object
  • list - Convert the value into a list
  • lower - Convert string to all lower case
  • nl2br - Replace new lines with <br /> HTML elements
  • random - Select a random value from an array
  • reject - Filters a sequence of objects by applying a test to each object, and rejecting the objects with the test succeeding
  • rejectattr - Filter a sequence of objects by applying a test to the specified attribute of each object, and rejecting the objects with the test succeeding
  • replace - Replace one item with another
  • reverse - Reverse a string
  • round - Round a number
  • safe - Mark the value as safe
  • select - Filters a sequence of objects by applying a test to each object, and only selecting the objects with the test succeeding
  • selectattr - Filter a sequence of objects by applying a test to the specified attribute of each object, and only selecting the objects with the test succeeding
  • slice - Slice an iterator and return a list of lists containing those items
  • sort - Sort arr with JavaScript's arr.sort function
  • string - Convert an object to a string
  • striptags - Strip SGML/XML tags and replace adjacent whitespace by one space
  • sum - Output the sum of items in the array
  • title - Make the first letter of the string uppercase
  • trim - Strip leading and trailing whitespace
  • truncate - Return a truncated copy of the string
  • upper - Convert the string to upper case
  • urlencode - Escape strings for use in URLs, using UTF-8 encoding
  • urlize - Convert URLs in plain text into clickable links
  • wordcount - Count and output the number of words in a string

Global Functions

  • range - Iterates over a fixed set of numbers
  • cycler - Rotates through several values
  • joiner - Combines multiple items except for the first time

Snippets

  • { - Curly braces for variables
  • % - Braces for code
  • bl - Define a section in a template
  • cb - BEGIN-END comment block
  • cl - Call a macro with all the text inside the tag
  • co - Braces for comments
  • ext - "Extends" another template
  • fl - Custom filters template
  • for - For loop
  • fr - Import specific values from a template
  • fras - Import specific values from a template and bind to a variable
  • [if](https://github.com/alsolovyev/Nunjucks/blob/master/Snippets/if.subl

Related Skills

View on GitHub
GitHub Stars17
CategoryDevelopment
Updated28d ago
Forks3

Security Score

95/100

Audited on Mar 1, 2026

No findings