0.0
The project is in a healthy, maintained state
metanorma-jis lets you write JIS standards in AsciiDoc syntax. This gem is in active development.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.14
~> 0.3.0
~> 13.0
~> 3.6
~> 1.5.2
= 2.4.0
~> 0.15
~> 0.9
~> 6.1.0

Runtime

 Project Readme

metanorma-JIS: Metanorma processor for Japanese Industrial Standards

Gem Version Build Status Code Climate Pull Requests Commits since latest

Functionality

This gem processes Metanorma documents following the Metanorma model for generating JIS standards.

The gem is basically the https://github.com/metanorma/metanorma-iso gem, with some tweaking of rendering to meet the particular requirements of the JIS.

It provides the following functions:

  1. Compiles Metanorma input into the Metanorma-JIS XML format (which is identical to Metanorma-ISO, since the two standards share the same document model)

  2. Validates XML output against the Metanorma-JIS document model

    • Errors are reported to console against the XML, and are intended for users to check that they have provided all necessary components of the document.

  3. Metanorma-JIS XML is then converted into desired output formats.

The following outputs are supported:

  • Primary: the canonical Metanorma-JIS XML representation (.xml).

  • Secondary: the Metanorma-JIS XML representation is processed to generate the following outputs as end deliverable JIS documents.

    • HTML (.html)

    • Word (.doc)

    • PDF (.pdf)

Structure

This gem inherits from the https://github.com/metanorma/metanorma-iso gem, and aligns closely to it.

Quickstart

Please see https://www.metanorma.com for instructions to get started.

You will need to setup your Git credentials for bundler or for HTTPS in order to fetch the software. Please refer to the following articles for details:

Usage

Using the metanorma CLI:

$ metanorma --type jis a.adoc                   # output HTML
$ metanorma --type jis --extensions html a.adoc # output just HTML
$ metanorma --type jis --extensions xml a.adoc  # output Metanorma XML

Authoring

Please refer to the Metanorma-ISO documentation for general documentation.

Examples