Skip to content

Commit

Permalink
Re-order docs sections (#692)
Browse files Browse the repository at this point in the history
This reorders doc sections and groups similar sections.

- Moves dev docs at the end to focus on Concepts and Guides
- Moves references to second last
  • Loading branch information
kaxil committed Aug 18, 2022
1 parent 642b5ee commit d8a3967
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 10 deletions.
2 changes: 1 addition & 1 deletion docs/concepts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ This is a faster way for datasets of larger size as there is only one network ca
.. _templating:

Templating
~~~~~~~~~~
----------
Templating is a powerful concept in Airflow to pass dynamic information into task instances at runtime. Templating in Airflow works exactly the same as templating with Jinja in Python: define your to-be-evaluated code between double curly braces, and the expression will be evaluated at runtime.

The parameter list passed to the decorated function is also added to the context which is used to render template. For example:
Expand Down
21 changes: 12 additions & 9 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,19 +15,21 @@ Welcome to astro-sdk-python's documentation!

.. toctree::
:maxdepth: 2
:caption: Developing Astro SDK
:glob:
:caption: Guides
:titlesonly:

development/*

Astro Enhancement Proposals <aep/index>
concepts.rst
operators.rst

.. toctree::
:maxdepth: 1
:caption: API Reference
:caption: Reference
:glob:

autoapi/*
configurations.rst
supported_databases.rst
supported_file.rst

.. toctree::
:maxdepth: 1
Expand All @@ -53,12 +55,13 @@ Welcome to astro-sdk-python's documentation!
.. toctree::
:maxdepth: 1
:caption: Reference
:maxdepth: 2
:caption: Developing Astro SDK
:glob:

configurations.rst
supported_databases.rst
supported_file.rst
development/*

Astro Enhancement Proposals <aep/index>

Indices and Tables
==================
Expand Down
9 changes: 9 additions & 0 deletions docs/operators.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
=========
Operators
=========

.. toctree::
:glob:

astro/sql/operators/*
astro/files/operators/*

0 comments on commit d8a3967

Please sign in to comment.