Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
docsify-docx-converter
Advanced tools
📖 A tool for building docx based on your docsify project
npm install --save-dev docsify-docx-converter
Create config file .docsifytodocxrc.js
in your project root directory.
module.exports = {
/** "table of contents" file path */
contents: '_sidebar.md',
/** Whether to enable title degradation, if enabled, replace <h1> with <h2>, <h2> with <h3>, and so on. */
titleDowngrade: true,
/** Document root directory */
rootPath: './docs',
/** Path where docx will stored */
pathToPublic: './README.docx',
/**
* The maximum width of the image in the document, and the height will be adaptive according to the width.
* The default is 468, which is the maximum width of a word document.
*/
imgMaxWidth: 468,
/** The title of the cover page. */
coverTitle: null,
/** The style of the body. */
bodyStyles: 'font-family: 微软雅黑;',
/** landscape or portrait (default) */
orientation: 'portrait',
/** map of margin sizes
* expressed in twentieths of point, see WordprocessingML documentation for details):
* http://officeopenxml.com/WPSectionPgMar.php
* */
margins: {}
};
Add script into package.json:
{
"scripts": {
"convert": "node_modules/.bin/docsify-docx-converter"
}
}
Run converter:
npm run convert
FAQs
A tool for building docx based on your docsify project
We found that docsify-docx-converter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.