Metadata-Version: 2.3
Name: rst2revealjs
Version: 0.1.0
Summary: Add your description here
Author: Kazuya Takei
Author-email: Kazuya Takei <myself@attakei.net>
Requires-Dist: docutils>=0.21.2
Requires-Dist: jinja2>=3.1.6
Requires-Python: >=3.10
Description-Content-Type: text/x-rst

============
rst2revealjs
============

Simple converter from docutils AST to Reveal.js presentation.

Overview
========

This is docutils adapter to write Reveal.js presentation by reStructuredText and other formats.
You can write presentation by plain text using many expression of reStructuredText.

Usage
=====

.. warning:: This section is included plan and it is not availabled yet.

.. code:: console

   pip install rst2revealjs

.. code:: rst

   Title
   =====

   Section 1
   =========

   Section 1-1
   -----------

.. code:: console

   rst2revealjs presentation.rst

You can see `presentation.html` by your browser.

Features
========

This provides some features to realize overview.

* Custom directives for specify behaviors about Reveal.js.
* Writer to generate HTML file using Reveal.js presentation.

Motivation
==========

This is re-implement from core features of sphinx-revealjs.
Because I want to write Reveal.js presentation on Web front-end using Pyodide. [#]_

As first goal, I will provide playground website to convert from reStructuredText to presentation using this.

License
=======

Apache-2.0 license. Please see LICENSE on repository.

.. rubric:: Footnotes

.. [#] docutils is registered on Pyodided built-in packages, but Sphinx is not registered.
