
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
docmake is a document templating language library for javascript.
Installation uses the npm package manager. Just type the following command after installing npm.
npm install docmake
var Docmake = require('docmake');
var fs = require('fs');
var doc = new Docmake();
doc.compile('{{hello}}', { hello: 'hello world!' }, function(err) {
if (err) {
return console.log(err);
}
doc.getPdf().pipe(fs.createWriteStream('document.pdf'));
});
doc.compile takes three arguments:
doc.getPdf takes one optional argument:
doc.getPcl takes one optional argument:
options:
docmake simple expressions starts with {{
, some content, and ends with }}
.
when the document is rendered with the template, the expression is evaluated and the value is printed in the document.
in the previous exemple, {{hello}}
expression is replaced by the corresponding value in the scope.
Sometimes, scope contains other objects or arrays. For example:
{
person: {
firsname: "Alexandre",
lastname: "Tiertant"
}
}
In such a case, you can use a dot-notation to gain access to the nested properties
{{person.firstname}}
{{person.lastname}}
Text tag starts with {{text
, a text, some attributes , and ends with }}
.
{{text person.firstname fontSize=24}}
{{text "some text here" bold=true}}
available attributes for text:
%
) width of the text%
) height of the textcomments can be used to explain template code, and to make it more readable. Any text between // and the end of the line will be ignored by template (will not be executed).
// some comment here
Image tag starts with {{image
, an image jpg or png (filepath or buffer or base64 string), and ends with }}
.
{{image "/home/user/image.png"}}
available attributes for image:
%
) width of the image%
) height of the imageSvg tag starts with {{svg
, an svg image (filepath or string), and ends with }}
.
{{svg "/home/user/image.svg"}}
available attributes for svg:
%
) width of the svg%
) height of the svgBarcode tag starts with {{barcode
, a string value, and ends with }}
.
{{barcode "this is a barcode"}}
available attributes for qr:
%
) width of the barcode%
) height of the barcodeQr tag starts with {{qr
, a string value, and ends with }}
.
{{qr "this is a qrcode"}}
available attributes for qr:
%
) width of the qrcode%
) height of the qrcodeby default, elements are placed one below other. using columns, elements are placed horizontally.
the tag {{#columns}}
require a closing tag {{/columns}}
.
{{#columns widths=["auto", 25, "*"]}}
{{text "column one"}}
{{text "column two"}}
{{text "column three"}}
{{/columns}}
available attributes for columns:
%
) total width of the columns%
: a percent of total widthin columns, elements are placed horizontally, using stack, elements are placed vertically.
the tag {{#stack}}
require a closing tag {{/stack}}
.
{{#stack}}
{{text "top"}}
{{text "middle"}}
{{text "bottom"}}
{{/stack}}
available attributes for stack:
%
) total width of the stacktables allow you to arrange elements into rows and columns of cells.
table element starts with tag {{#table}}
and ends with {{/table}}
, it must contain one or more row element.
row element starts with tag {{#row}}
and ends with {{/row}}
, it must contain one or more header or column element.
header element starts with tag {{#header}}
and ends with {{/header}}
.
column element starts with tag {{#column}}
and ends with {{/column}}
.
{{#table width="75%" repeatHeader=true}}
{{#row}}
{{#header}}"firstname"{{/header}}
{{#header}}"lastname"{{/header}}
{{/row}}
{{#row}}
{{#column}}"Alexandre"{{/column}}
{{#column}}"Tiertant"{{/column}}
{{/row}}
{{/table}}
available attributes for table:
%
) total width of the table%
: a percent of total widthavailable attributes for table, row, header and columns:
hspace tag add an horizontal space wheras vspace add a vertical one. they only take one integer size parameter.
{{hspace 100}}
{{vspace 50}}
Style tag add some basic css style to document
Style tag starts with {{style
, a simple css string, and ends with }}
.
docmake css implement tag, class(.), id(#) selector
{{style "text { color=#FF0000; }"}}
{{text "all text are displayed in red"}}
Class tag define a class that can be applyed to any element.
Class tag starts with {{class
, a class name string, some attributes, and ends with }}
.
{{class "red" color="#FF0000"}}
{{text "text displayed in red" class=["red"]}}
Font tag add .ttf files as font
Font tag starts with {{font
, a font name string, some attributes, and ends with }}
.
{{font myFont normal="/home/user/myfont.ttf"}}
{{text "text displayed in red" class=["red"]}}
available attributes for font:
contents of page header and page footer are repeat on each page on top for page header and at the bottom for page footer.
text {{currentPage}}
in page footer is replaced by the number of the current page.
text {{pageCount}}
in page footer is replaced by the count of pages.
{{#pageHeader}}
{{image "/home/user/header.png" width="100%"}}
{{/pageHeader}}
{{#pageFooter}}
{{image "/home/user/footer.png" width="100%"}}
{{text "{{currentPage}} / {{pageCount}}" alignment="right"}}
{{/pageFooter}}
{{pageBreak}}
tag move to the next page.
{{resetPageCount}}
tag break the page and reset the number of page and page count.
If tag include its contents in document only if a condition is satisfied.
If tag starts with {{#if
, a conditional expression, and ends with }}
.
If tag must be close with tag {{/if}}
{{#if person.firstname == "Alexandre"}}
{{person.firstname}}
{{/if}}
Each tag include its contents in document once for each element in an array, in order and replace scope by it.
{
my_array: [
{
data: "first"
},
{
data: "second"
}
]
}
{{#each my_array}}
{{data}}
{{/each}}
inside a Each tag, some keywords could be used:
$root
to access root scope.$item
to access current iteration item.$key
to access the current key in object iteration (same as $index in array).$index
to access the index of the iterated item.$first
only true on first iteration.$last
only true on last iteration.{{#each ["1","2","3"]}}
{{#if $first}}
{{text "first"}}
{{/if}}
{{text concat("item: ", $item, " index: ", $index)}}
{{#if $last==true}}
{{text "last"}}
{{/if}}
{{/each}}
FAQs
document templating language library for javascript
The npm package docmake receives a total of 3 weekly downloads. As such, docmake popularity was classified as not popular.
We found that docmake 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
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.