Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-htmlbook

Package Overview
Dependencies
Maintainers
2
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-htmlbook

Render HTMLBook

  • 0.0.41
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
2
Created
Source

gulp HTMLBook

Contains gulp plugins to convert from HTMLBook to HTML.

layout

layout.template()

Layout content in a templates, and replace variables in the content

layout.ordering()

Adds prev_url, next_url, prev_label, next_label variables to each file

layout.navigation()

Create the navigation html by passing the nav json through a template

layout.index()

Create the index html by passing the index json through a template

layout.chunk()

Split the content from a single HTMLBook file into chunks, at the chapter or section level

generate

generate.map()

Run through a stream of documents and generate reference objects for each file and every id, returns json

generate.index()

Find all index terms in a stream of documents and sort them, returns json

generate.nav()

Find all the headers in a stream of documents and create the nav for the Table of Contents, returns json.

process

processes parts of the content, most require content to have been mapped

process.ids()

Adds ids for all chapter, section, a[data-type='indexterm'], div[data-type], aside, figure elements that don't have one.

process.indexterms()

Removes spaces from indexterm elements

process.labels()

Replaces headers with nice labels, such as Section 1.2

process.admonitions()

Adds translated header text to admonition elements (en only for now)

process.comments()

Removes comments

process.xrefs()

Replaces cross-refrenced link with the correct url and text

process.escape()

Replaces cdata in pre elements, escapes their content

tools

tools.helpers()

Collection of helper functions

tools.mapper()

Map a document

tools.generateid()

Generates Id's based on hashed content, these will always be the same if the content is the same.

Installation

npm install gulp-htmlbook
var htmlbook = require("gulp-htmlbook");

###Usage

See the example gulpfile.js for how to process a sample HTMLBook source.

A compile task should process the source content and output it for mapping and templating. If the content is in markdown, asciidoc or docbook it must be transformed prior to this step.

var outputPath = "compiled/";

gulp.task('compile', [], function() {
  return gulp.src("*.html")
    .pipe(htmlbook.process.ids())
    .pipe(htmlbook.process.indexterms())
    .pipe(htmlbook.process.admonitions())
    .pipe(htmlbook.process.comments())
    .pipe(gulp.dest(outputPath));
});

Next map the compiled content. This map is used with many other plugins.

var order = require('gulp-order');
gulp.task('map', ['compile'], function() {
  return gulp.src(outputPath+"*.html")
    .pipe(order(['chap_1.html','chap_2.html'])) // Must be ordered
    .pipe(htmlbook.generate.map())
    .pipe(gulp.dest(outputPath));
});

Finaly, wrap each chunk in an html template.

gulp.task('template', ['compile', 'map'], function() {
  var map = require("./map.json"); // Load the map

  return gulp.src(outputPath+"*.html")
    .pipe(htmlbook.layout.ordering(['chap_1.html','chap_2.html'], map))
    .pipe(htmlbook.layout.template())
    .pipe(gulp.dest(outputPath));
});

FAQs

Package last updated on 24 Mar 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc