Socket
Socket
Sign inDemoInstall

shtml2html

Package Overview
Dependencies
2
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    shtml2html

shtml2html is a HTML parser tool that will make include shtml files inline and save as html files.


Version published
Maintainers
1
Install size
60.0 kB
Created

Readme

Source

shtml2html

NPM version

shtml2html is a HTML parser tool that will make include shtml files inline and save as html files.

That is to say, the code snipe list below will be replaced by the content of file file.shtml:

<!--#include file="inc/file.shtml" -->
<!--#include virtual="/test/inc/file.shtml" -->

Both Single File and The Entire Folder are supported ! Sub folders are not supported.

Install

Install module with npm:

npm install shtml2html -g

Usage -- command line

shtml2html [options]

shtml2html can run without any option.

In this condition, the program will scan the current folder and process the files, then output them to a temp folder in the current folder with name start with _shtml2html_.

The available options are:

-h, --help                 output usage information
-V, --version              output the version
-s, --source [value]       optional, default is current folder
-d, --destination [value]  optional, default is a temp folder in the source folder
-w, --wwwroot [value]      optional, only required when include files are quoted with absolute path

####Examples

  1. process files in current folder and output to the dest/ sibling folder:
shtml2html -d ../dest
  1. process files in the html sub folder and output to the dest/ sub folder:
shtml2html -s html -d dest/
  1. process files in current folder and output to the dest/ sibling folder, include files are quote with absolute path and the web root path is D:\wwwroot:
shtml2html -d ../dest -w "D:\\wwwroot\\blog\\"
  1. process file a.shtml in current folder and output to the dest/ sibling folder, save as its original name:
shtml2html -s a.shtml -d ../dest
  1. process file a.shtml in current folder and output to the current folder, save as b.html:
shtml2html -s a.shtml -d b.html

The list wording of path are equal in command line, be carefule of the \ and /, especially at the end of a string:

../dest/
..\\dest\\

and, if the folder name contains spaces, double quote is required:

shtml2html -d "release version"

You should be clear that the destination is either a file name or a folder name, or file(s) will appear in the wrong place. Of course, you can track the folder from the console information.

Usage -- nodejs file

The best example is the cli.js source file in the src folder. Also, here is a quick start:

var shtml2html = require('shtml2html');
shtml2html(pathFrom, pathTo, pathWwwroot, callback);

The callback is a function that process the result infomations with an array with data structure

[
    {"msg" : "infomation text", "type": "infomation type"}
]

Infomation type can be one of the child of the array ["success", "fail", "warn"].

Release Log

  • ####1.0.5 2013.11.19
    Fix RegExp. bug. Compatible with non-standard wording.

  • ####1.0.4 2013.11.13
    Extend nodejs file usage.

  • ####1.0.3 2013.11.12
    Add package.json dependencies.

  • ####1.0.2 2013.11.12
    Support both single file and the entire folder.

  • ####1.0.1 2013.11.07
    Fix RegExp. bug.
    Add examples in readme file.

  • ####1.0.0 2013.11.06
    First release version

http://www.w3.org/Jigsaw/Doc/User/SSI.html

Keywords

FAQs

Last updated on 19 Nov 2013

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc