GitXplorerGitXplorer
x

sphinx-docfx-markdown

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
8160b61f10fdb1284c5f549fec989b22ba9ff30f

Support runpython_node

ssdpython committed 6 years ago
Unverified
211676dc7c0adf74b0c6777476cbd9eec6f54d78

allow manual replacements

ssdpython committed 6 years ago
Unverified
d3a1c8c5fcaab1a6b610e13b7f7a1571acf4c814

fix links, titles for the API

ssdpython committed 6 years ago
Unverified
fa0a46bc6ecabe0f6cda84c6e4faec795908f421

update markdown outputter

ssdpython committed 6 years ago
Unverified
dfc0181ee9366dc713d0bcb5862f7ef2a60afe47

remove unnecessary changes

ssdpython committed 6 years ago
Unverified
c1e7421a3f2df32619fa69b1adbb66fb0638028f

better handling of links and parameters

ssdpython committed 6 years ago

README

The README file for this repository.

Sphinx DocFX YAML

.. image:: https://travis-ci.org/docascode/sphinx-docfx-yaml.svg?branch=master :target: https://travis-ci.org/docascode/sphinx-docfx-yaml

Sphinx DocFX YAML is an exporter for the Sphinx Autodoc module into DocFX YAML <https://dotnet.github.io/docfx/spec/metadata_format_spec.html>_.

You can read the full documentation online at http://sphinx-docfx-yaml.readthedocs.io

Contents

.. toctree:: :glob: :maxdepth: 2

design layout api

Basic Workflow

  • Write RST that includes Python autodoc <www.sphinx-doc.org/en/stable/ext/autodoc.html>_
  • Render internal doctree into YAML
  • Output YAML into output directory

Install

First you need to install docfx-yaml:

.. code:: bash

pip install sphinx-docfx-yaml

Then add it to your Sphinx project's conf.py:

.. code:: python

# Order matters here.
# The extension must be defined *after* autodoc,
# because it uses a signal that autodoc defines
extensions = ['sphinx.ext.autodoc', 'docfx_yaml.extension']

Make sure you are using autodoc in your code somewhere::

.. automodule:: foo.bar

Then build your documentation::

make html

Inside your build directory (_build/html usually), the docfx_yaml will contain the YAML files that are output.

.. Modes -----

There are two output modes that specify the structure of the YAML files.
The first is ``module`` which means that the YAML files will be output in files corresponding to the name of their module.
The second modes is ``rst`` which outputs them in the same structure as the RST files they were defined in.

Design

Read more about the design in our :doc:design.

Layout

This project has a few different pieces at this point. It's primary goal was to integrate the Azure Python SDK into the docfx tooling. You can read more about the pieces currently set up in the :doc:layout.

Napoleon Support

We support sphinx.ext.napoleon for parsing docstrings in other formats. Currently all markup that maps to existing Sphinx info field lists <http://www.sphinx-doc.org/en/stable/domains.html#info-field-lists>_ will work, along with Examples. In order to pull examples out, you need the napoleon_use_admonition_for_examples set to True.