Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
npm i ibra --save
Ibra is a performant templating engine for javascript that uses markdown syntax to define structure. Lodash style templates can be used to process logic in your markdown files. Essentially, mix markdown syntax and lodash templating for rendering HTML.
For information on using lodash templates visit the lodash documentation
Use @{
and @}
for defining blocks that should be evaluated as lodash templates.
const text = `# @{
<%=name %>
@}
@{
<ul>
<% for (var i = 1; i <= 10; i++) { %>
<li><%=i%></li>
<% } %>
</ul>
@}`
const data = {name: 'tom'}
const ibra = require('ibra')
const html = ibra(content, data)
/*
html becomes:
<h1>tom</h1>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
...
</ul>'
*/
Fork this repository and run npm install
in project directory.
npm run test
FAQs
Use markdown as an html templating engine.
We found that ibra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.