All Projects → dita-ot → Dita Ot

dita-ot / Dita Ot

Licence: apache-2.0
DITA Open Toolkit — the open-source XML publishing engine for content authored in the Darwin Information Typing Architecture.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Dita Ot

Auto
Generate releases based on semantic version labels on pull requests.
Stars: ✭ 1,120 (+301.43%)
Mutual labels:  hacktoberfest, publishing
Woodstox
The gold standard Stax XML API implementation. Now at Github.
Stars: ✭ 145 (-48.03%)
Mutual labels:  hacktoberfest, xml
Eleventy
A simpler static site generator. An alternative to Jekyll. Transforms a directory of templates (of varying types) into HTML.
Stars: ✭ 10,867 (+3794.98%)
Mutual labels:  hacktoberfest, documentation-tool
Sirix
SirixDB is a temporal, evolutionary database system, which uses an accumulate only approach. It keeps the full history of each resource. Every commit stores a space-efficient snapshot through structural sharing. It is log-structured and never overwrites data. SirixDB uses a novel page-level versioning approach called sliding snapshot.
Stars: ✭ 638 (+128.67%)
Mutual labels:  hacktoberfest, xml
Home
A configurable and eXtensible Xml serializer for .NET.
Stars: ✭ 208 (-25.45%)
Mutual labels:  hacktoberfest, xml
Wowchemy Hugo Modules
🔥 Hugo website builder, Hugo themes & Hugo CMS. No code, build with widgets! 创建在线课程,学术简历或初创网站。
Stars: ✭ 6,093 (+2083.87%)
Mutual labels:  hacktoberfest, documentation-tool
Yguard
The open-source Java obfuscation tool working with Ant and Gradle by yWorks - the diagramming experts
Stars: ✭ 130 (-53.41%)
Mutual labels:  hacktoberfest, ant
Ghost Cli
CLI Tool for installing & updating Ghost
Stars: ✭ 313 (+12.19%)
Mutual labels:  hacktoberfest, publishing
Redoc
📘 OpenAPI/Swagger-generated API Reference Documentation
Stars: ✭ 15,935 (+5611.47%)
Mutual labels:  hacktoberfest, documentation-tool
Xbmc
Kodi is an award-winning free and open source home theater/media center software and entertainment hub for digital media. With its beautiful interface and powerful skinning engine, it's available for Android, BSD, Linux, macOS, iOS and Windows.
Stars: ✭ 13,175 (+4622.22%)
Mutual labels:  hacktoberfest, xml
Parsel
Parsel lets you extract data from XML/HTML documents using XPath or CSS selectors
Stars: ✭ 628 (+125.09%)
Mutual labels:  hacktoberfest, xml
Hugo
The world’s fastest framework for building websites.
Stars: ✭ 55,899 (+19935.48%)
Mutual labels:  hacktoberfest, documentation-tool
Pdoc
🐍 ➡️ 📜 Auto-generate API documentation for Python projects
Stars: ✭ 604 (+116.49%)
Mutual labels:  hacktoberfest, documentation-tool
Sdformat
Simulation Description Format (SDFormat) parser and description files.
Stars: ✭ 51 (-81.72%)
Mutual labels:  hacktoberfest, xml
Zek
Generate a Go struct from XML.
Stars: ✭ 451 (+61.65%)
Mutual labels:  hacktoberfest, xml
Js2xml
Convert Javascript code to an XML document
Stars: ✭ 124 (-55.56%)
Mutual labels:  hacktoberfest, xml
Texture
A visual editor for research.
Stars: ✭ 958 (+243.37%)
Mutual labels:  publishing, xml
Htmlparser2
The fast & forgiving HTML and XML parser
Stars: ✭ 3,299 (+1082.44%)
Mutual labels:  hacktoberfest, xml
Configurate
A simple configuration library for Java applications providing a node structure, a variety of formats, and tools for transformation
Stars: ✭ 148 (-46.95%)
Mutual labels:  hacktoberfest, xml
Horaires Ratp Api
Webservice pour les horaires et trafic RATP en temps réel
Stars: ✭ 232 (-16.85%)
Mutual labels:  hacktoberfest, xml

DITA Open Toolkit Build Slack

DITA Open Toolkit, or DITA-OT for short, is an open-source publishing engine for XML content authored in the Darwin Information Typing Architecture.

Visit the project website at dita-ot.org for documentation, information about releases, and download packages.

For information on additional DITA and DITA-OT resources, see SUPPORT. To report a bug or suggest a feature, create an issue. For more information on how you can help contribute to the project, see CONTRIBUTING.

Prerequisites: Java 8

  • To build DITA-OT, you’ll need Java Development Kit (JDK), version 8 or newer
  • To run DITA-OT, the Java Runtime Environment (JRE) is sufficient

You can download the Oracle JRE or JDK from oracle.com/technetwork/java.

Installing

  1. Download the distribution package from dita-ot.org/download.
  2. Extract the contents of the package to the directory where you want to install DITA-OT.

Installing on macOS via Homebrew

On macOS, you can also install DITA-OT using the Homebrew package manager:

brew install dita-ot

Homebrew will automatically download the latest version of the toolkit, install it in a subfolder of the local package Cellar and symlink the dita command to /usr/local/bin/dita.

Building output

You can generate output using the dita command-line tool included with DITA Open Toolkit.

  1. On the command line, change to the bin folder of the DITA-OT installation directory:

    cd path/to/dita-ot-dir/bin
    
  2. Run the dita command to generate output:

    dita --input=input-file --format=format [options]
    

    where:

    • input-file is the DITA map or DITA file that you want to process
    • format is the output format (or “transformation type”)

See the documentation for arguments and options.

For developers

Building the toolkit from source code and compiling the distribution package
  1. Clone the DITA-OT Git repository:

    git clone git://github.com/dita-ot/dita-ot.git
    
  2. Change to the DITA-OT directory:

    cd dita-ot
    
  3. Fetch the submodules:

    git submodule update --init --recursive
    
  4. In the root directory, run Gradle to compile the Java code and install plugins:

    ./gradlew
    

Distribution builds

  1. In the root directory, set up the build environment:

    ./gradlew
    
  2. Build the distribution packages:

    ./gradlew dist
    

    Distribution packages are built in the build/distributions directory.

    If Gradle throws an error like java.lang.OutOfMemoryError: Java heap space, you probably need to increase the maximum Java heap size. One way to do this is to set the GRADLE_OPTS environment variable to a value like -Xmx1024m.

    For more information on the -Xmx option, see the Java SE Documentation.

License

DITA Open Toolkit is licensed for use under the Apache License 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].