Socket
Socket
Sign inDemoInstall

@asciidoctor/core

Package Overview
Dependencies
11
Maintainers
3
Versions
34
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @asciidoctor/core

Asciidoctor - the core library


Version published
Weekly downloads
41K
decreased by-23.37%
Maintainers
3
Install size
8.49 MB
Created
Weekly downloads
 

Readme

Source

Asciidoctor core

This package provides Asciidoctor core functionality:

  • parser
  • built-in converters
  • extensions

Install

$ npm i @asciidoctor/core --save

Usage

Here is a simple example that converts AsciiDoc to HTML5:

sample.js

const asciidoctor = require('@asciidoctor/core')() // ①
const content = 'http://asciidoctor.org[*Asciidoctor*] ' +
  'running on https://opalrb.com[_Opal_] ' +
  'brings AsciiDoc to Node.js!'
const html = asciidoctor.convert(content) // ②
console.log(html) // ③
  1. Instantiate the Asciidoctor.js library
  2. Convert AsciiDoc content to HTML5 using Asciidoctor.js
  3. Print the HTML5 output to the console

Save the file as sample.js and run it using the node command:

$ node sample.js

You should see the following output in your terminal:

<div class="paragraph">
<p><a href="http://asciidoctor.org"><strong>Asciidoctor</strong></a> running on <a href="http://opalrb.com"><em>Opal</em></a> brings AsciiDoc to Node.js!</p>
</div>

If you want to know more about Asciidoctor.js, please read the User Manual.

Changelog

Refer to the CHANGELOG for a complete list of changes.

Keywords

FAQs

Last updated on 12 Feb 2024

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