tilt

Version, currently 1.0.03 versions

github.com/makenowjust/tilt

TILT Is Loader of Template. It is generalized template engine interface.

6 stars
0 dependents
License: MIT

Nothing has been indexed for 1.0.0 yet. The tag is recorded, its shard.yml has not been read, so the manifest and dependency list below are empty because they are unknown rather than because they are absent.

Installation

# Add this to your shard.yml
dependencies:
  tilt:
    github: makenowjust/tilt
    version: ~> 1.0.0

Then run:

shards install

shard.yml

No shard.yml has been indexed for 1.0.0. You can read it on the repository.

Dependencies

Unknown: the shard.yml for this version has not been read yet.

README

This README is the one indexed from the repository at its latest ref, not from the tag for this version.

tilt

Tilt Is Loader of Template. It is generalized template engine interface.

Build Status Dependency Status devDependency Status

Installation

Add this to your application's shard.yml:

dependencies:
  tilt:
    github: MakeNowJust/tilt

Supported engines

Usage

For users

require "tilt"

# Load template engines which are used in your app
require "ecr/macros"
require "crustache" # MakeNowJust/crustache
require "slang"     # jeromegn/slang


# Render some templates

puts Tilt.render "hello.ecr"      # render as "ecr"
puts Tilt.render "hello.mustache" # render as "mustache" (using crustache)
puts Tilt.render "hello.slang"    # render as "slang"


# Set the default template engine

Tilt.default_engine "ecr"

puts Tilt.render "hello" # render as "ecr" although without extension


# Other APIs

# It is like `Tilt.render`, but it requires IO object then renders to this.
puts String.build { |io| Tilt.embed "hello", io }


# Load specified template file, and define `#to_s` method to render this file.
class HelloView
  def initialize(@name); end

  getter name

  Tilt.file "hello"
end

puts HelloView.new("Tilt").to_s


# Passing additional arguments to the template if the engine supported
puts Tilt.render("hello.mustache", { "name" => "Tilt" })


# Add your template engine
Tilt.register "html", ECR.embed


# Add alias
Tilt.alias "html", "ecr"

For developer of template engine

This is the process of Tilt.embed.

  1. There are <FilenameExtension>.embed macro in global space. (<FilenameExtension> is your template engine's filename extension. When it is less then 4 character, it should be upper case. Otherwise, when it is more than or equal 4 character,it should be camel-case.)
  2. When Tilt.embed(filename) is called, Tilt calls <FilenameExtension>.embed or registered engine if filename has extension. Otherwise, Tilt calls default engine.
require "tilt"

module FMT
  # Render `filename` by `sprintf`
  def self.embed(filename, io, arg = nil)
    io << sprintf(File.read(filename), arg)
  end
end

# Render with `FMT` template engine
puts Tilt.render "hello.fmt", { "name" => "Tilt" }

If you create new template engine supported Tilt, I welcome your Pull Request to add it to supported engine list. (And, I wanna you add specs for this engine.)

Development

$ crystal spec

Contributing

  1. Fork it ( https://github.com/MakeNowJust/tilt/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors