You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Jack Lukic a8914d32d7 Moves some important logic from toggle to show in popup, so it can be called programmatically 11 years ago
..
node_modules Adds node modules to gitignore too much issues 11 years ago
out Missing updates from home lost during last sick week 11 years ago
.npmignore Fixes issue with accidental submodule 11 years ago
Contributing.md Updates docpad, ports some reveal code left in branch (still fucked) 11 years ago
LICENSE.md Updates docpad, ports some reveal code left in branch (still fucked) 11 years ago
README.md Missing updates from home lost during last sick week 11 years ago
package.json Merge branch 'master' of github.com:quirkyinc/semantic 11 years ago

README.md

Text Plugin for DocPad

Build Status NPM version Flattr donate button PayPayl donate button

This plugin allows you to render variables within templateData using text elements

E.g. if you have this in your docpad.cson

{
	templateData:
		firstname: 'Benjamin'
		lastname: 'Lupton'
		fullname: '<t>firstname</t> <t>lastname</t>'
		markdownExample: '<t render="markdown">this is so **awesome**</t>'
		markdownEcoExample: '<t render="md.eco">here is a random number: **<%- Math.random() %>**</t>'
}

Doing the following inside a document:

My creator's firstname is: <t>firstname</t>
My creator's lastname is: <t>lastname</t>
My creator's fullname is: <t>fullname</t>
The markdown example is: <t>markdownExample</t>
The markdown eco example is: <t>markdownEcoExample</t>

Will output:

My creator's firstname is: Benjamin
My creator's lastname is: Lupton
My creator's fullname is: Benjamin Lupton
The markdown example is: this is so <strong>awesome</strong>
The markdown eco example is: here is a random number: <strong>0.5123213213123</strong>

Which is incredibly useful for abstracting out common generic pieces of text from your templates and placing them inside your configuration files. A common use case for this is easy configurability of skeletons, as well as easier translation of your website.

If you are embedding a text block into a text block, it is best that you name your text block like so <t:myName>blah</t:myName> that way our parser won't get confused as easily :)

To use it with coffeekup you'll do it like so tag 'text', {render:"md"}, "your **markdown** content". More info here..

Alternatively, you can use the t template helper like so @t('*markdown*', {render="markdown"})

Install

To use this plugin with DocPad, simply run npm install docpad-plugin-text inside your website's directory. You'd probably also want to add "docpad-plugin-text": "latest" to your package.json dependencies.

History

You can discover the history inside the History.md file

Contributing

You can discover the contributing instructions inside the Contributing.md file

License

Licensed under the incredibly permissive MIT License
Copyright © 2012+ Bevry Pty Ltd us@bevry.me