Skip to content

ku/CreateLink

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

74 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Create Link

Source code of Create Link.

Filters

This feature is basically for developers.

You can define a Filter for each format which is applied to the text generated by Create Link. Filters are defined with JavaScript code which takes generated text and returns text.

Name Format Filter
HTML %title% return s + ' ' + (new Date().toJSON().substring(0, 10))

The configuration above gives you following text.

<a href="http://example.com/">Example Domain</a> 2017-03-14

Development

Build

webpack is used for building application code. Run

make watch

to watch the changes and generate js files.

Test

make test