
Research
NPM targeted by malware campaign mimicking familiar library names
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
grunt-html2md
Advanced tools
Transform HTML files to Markdown in a Grunt task
This Grunt task plugin transforms the given HTML files to the Markdown format.
This plugin requires Grunt ~1.0
and Node.js
version to be minimum of 10.13.0
, which is the active Long Term Support (LTS) version, and
handles the transformation via
HTML to Markdown converter ~3.1
.
If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
npm install grunt-html2md --save-dev
Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:
grunt.loadNpmTasks('grunt-html2md');
In your project's Gruntfile, add a section named html2md
to the data object passed
into grunt.initConfig()
.
grunt.initConfig({
html2md: {
your_target: {
// Target-specific source file lists and/or file write options go here.
},
},
})
Options are passed to the to-markdown
handler, please see
https://github.com/domchristie/to-markdown for further details
Type: boolean
Default value: false
GitHub Flavoured Markdown
In this example, the default options are used, as there aren't any at the moment.
All the files matching the src/*.html
and legacy/*.html
selectors will be used
as HTML sources, which will be converted to Markdown files placed in the same folder
as the given source file.
grunt.initConfig({
html2md: {
main: {
src: [
'src/*.html',
'legacy/*.html'
]
},
},
})
"A Beginner's Guide to Open Source: The Best Advice for Making your First Contribution".
Also there is a blog post about "45 Github Issues Dos and Don’ts".
Linting is done with ESLint and can be executed with npm run lint
.
There should be no errors appearing after any JavaScript file changes.
Unit tests are done with Nodeunit.
npm install
npm run lint
npm test
v3.0.0
(2020-05-28)
8.11.1
to 10.13.0
v2.0.0
(2019-01-22)
4.2.0
to 8.11.1
main
property in package.json
was pointing to a wrong filev1.2.0
(2016-08-11)
v1.1.0
(2016-02-15)
4.2.0
(LTS)v1.0.0
(2015-05-05)
v0.1.2
(2014-08-23)
v0.1.1
(2013-12-20)
v0.1.0
(2013-07-23)
Copyright (c) Juga Paazmaya paazmaya@yahoo.com
Licensed under the MIT license.
v3.0.0
(2020-05-28)
8.11.1
to 10.13.0
FAQs
Transform HTML files to Markdown in a Grunt task
The npm package grunt-html2md receives a total of 117 weekly downloads. As such, grunt-html2md popularity was classified as not popular.
We found that grunt-html2md 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.
Research
Socket uncovered npm malware campaign mimicking popular Node.js libraries and packages from other ecosystems; packages steal data and execute remote code.
Research
Socket's research uncovers three dangerous Go modules that contain obfuscated disk-wiping malware, threatening complete data loss.
Research
Socket uncovers malicious packages on PyPI using Gmail's SMTP protocol for command and control (C2) to exfiltrate data and execute commands.