Skip to content

Releases: bit-docs/bit-docs-generate-html

showdown support

04 Jun 15:49
Compare
Choose a tag to compare

Instead of using stmd.js, you can configure bit-docs-html-generate to use showdown

You configure bit-docs to have a "showdown" option as follows:

"bit-docs": {
  ...
  "showdown": { "tasklists": true },
  ...
}

Options can be found here: https://github.com/showdownjs/showdown#options

0.11.1

14 Nov 19:27
Compare
Choose a tag to compare

This fixes an issue with calling package methods that are not meant to be called.

v0.11.0

18 Jun 17:12
Compare
Choose a tag to compare

Escapes single element content 911d9f8

Upgraded to steal-tools 1.x

15 Sep 18:54
Compare
Choose a tag to compare

The main goal of this release was to implement the latest version of steal-tools for the bundling process, mainly to enable the use of the latest steal plugins.

Diff: v0.7.1...v0.8.0

0.7.1

14 Aug 17:56
Compare
Choose a tag to compare

Escape all script tags inside the docObject

Each generated HTML page has a script tag where the docObject is made available for other bit-docs plugins to use:

<script>
  var docObject = { /* most likely a big object */ };
</script>

If any of the string properties of the docObject has an unscaped closing script tag (</script) the HTML parser would close script tag outside the string prematurely causing parts of the docObject to be rendered on the screen.

See stealjs/stealjs#59

This patch release makes sure all closing script tags are escaped properly.

Diff: v0.7.0...v0.7.1

v0.7.0

12 Jul 16:51
Compare
Choose a tag to compare

v0.6.0-pre.1

12 Jul 16:50
Compare
Choose a tag to compare
v0.6.0-pre.1 Pre-release
Pre-release

This release only bumped the version number.

Diff: v0.6.0-pre.0...v0.6.0-pre.1

v0.6.0-pre.0

12 Jul 16:49
Compare
Choose a tag to compare
v0.6.0-pre.0 Pre-release
Pre-release

v0.6.0

18 May 19:04
Compare
Choose a tag to compare

This release allows linking to a section with hash syntax

Example:

[some-name#someSection]

v0.5.0

17 May 19:31
Compare
Choose a tag to compare

This release removes all searchMap generation related logic (it has moved to its own repo).

There were also some minor style changes: