Security News
Maven Central Adds Sigstore Signature Validation
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
marked-brunch-static
Advanced tools
Compile static markdown files with brunch.
marked-brunch-static is a processor for html-brunch-static, a brunch plugin designed to handle static html files. marked-brunch-static can convert markdown files into static html files with html-brunch-static's support for layouts and partial views.
marked-brunch-static depends on html-brunch-static, which also depends on brunch-static, so, you will need to install all three. The recommended method is via npm:
npm install --save-dev brunch-static html-brunch-static marked-brunch-static
Or manually:
"brunch-static": "x.y.z"
to package.json"html-brunch-static": "x.y.z"
to package.json"marked-brunch-static": "x.y.z"
to package.jsonnpm install
"brunch-static": "git+ssh://git@github.com:bmatcuk/brunch-static"
"html-brunch-static": "git+ssh://git@github.com:bmatcuk/html-brunch-static"
"marked-brunch-static": "git+ssh://git@github.com:bmatcuk/marked-brunch-static"
Add marked-brunch-static to your list of html-brunch-static processors:
exports.config =
...
plugins:
static:
processors: [
require('html-brunch-static') {
processors: [
require('marked-brunch-static') {
fileMatch: ...
fileTransform: ((filename) -> ...)
...
}
]
}
]
Most options passed to marked-brunch-static are passed, verbatim, to marked, with the exception of:
fileMatch (default: /\.static\.(?:markdown|mdown|mkdn|md|mkd|mdwn|mdtxt|mdtext|text)$/
)
fileMatch is an anymatch that is used to determine which files will be handled by this processor. As an anymatch, it may be a string with globs, a regex, or a function that takes a filename and returns true if it should be handled, or false otherwise. The default will match files that end in
.static.markdown
,.static.md
, etc.
fileTransform (default: (filename) -> filename.replace(/\.static\.\w+$/, '.html')
)
fileTransform converts the input filename into an html filename. It takes a filename as input and returns the new filename with the html extension. If you set the fileMatch property above, you'll probably need to set this option as well to ensure that your output files end with the html extension.
FAQs
Compile static markdown files with brunch.
The npm package marked-brunch-static receives a total of 0 weekly downloads. As such, marked-brunch-static popularity was classified as not popular.
We found that marked-brunch-static 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
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.