Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

masover-re_template

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

masover-re_template

  • 0.0.1.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

A very simple template engine based on Regular Expressions

Features

  • Regular expressions or plain text
  • Can be used for HTML->HTML (read on)
  • Tested on Ruby 1.8.7 and 1.9.1

Usage

template = ReTemplate::Text.new template.expressions = {/{foo}/ => :foo, /{bar}/ => :bar} template.parse! 'A {foo} is not a {bar}.' template.render :foo => 'plant', :bar => 'rhinocerous', :other_expression => 'ignored' => 'A plant is not a rhinocerous.'

Expressions must be set before parsing. Multiple calls to parse! can be done with the same expressions (this may change). Multiple calls to 'render' will work by design. It also works with HTML:

template = ReTemplate::Html.new template.add_text_expressions '' => :foo, '|lang|' => :lang template.parse! '

<foo> is not a valid |lang| tag.

' template.render :foo => '', :lang => 'HTML' => '

<bar> is not a valid HTML tag.

'

Actually, I lied, as this will currently attach a doctype, and wrap things in html and body tags, if any of these things are missing. I blame Nokogiri.

Read the specs for more.

Motivation/Examples

Mail merge. A user can prepare an email like this, in their mail client:

Dear {customer_name}, Lorem ipsum dolor sit amet...

The curly brackets are merely a convention, because {user} is unlikely to be intended in the body of a message. The important point is that this can also be applied to an HTML message, even if the pattern or replacement text is not valid HTML. For example:

Dear <customer_name>,

A simple text replacement would only see <user>. While we're at it, the replacement text is automatically escaped.

I also looked at Liquid. It is very cool, but it was overkill for this project, and it didn't look like it would behave well with WYSIWYG-generated HTML.

CAVEATS

This is brand spanking this-afternoon new. The API is pretty much guaranteed to change. If you're using this for anything important, either fork it or lock to a specific version.

The expressions hash is unordered. If you have a chunk of text that could match two different regular expressions, one of them is going to be applied first, and it's undefined which one. If this matters to you, you're probably using the wrong tool -- personally, I won't be using the regexes directly at all, they just seem to be faster (for some bizarre reason) than string#split.

Someone MUST have done a better job of this somewhere. If you find it, let me know!

FAQs

Package last updated on 11 Aug 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc