https://github.com/Dans-labs/text-fabric
Raw File
Tip revision: 2afdd304cc97d8e89820f0d089993a524c1e20ec authored by Dirk Roorda on 13 June 2018, 08:57:24 UTC
New minor release 4.4.2
Tip revision: 2afdd30
mkdocs.yml
site_name: Text-Fabric
site_description: >- 
  Text-Fabric is a Python3 package for Text plus Annotations.
  It provides a data model,
  a text file format,
  and a binary format
  for (ancient) text plus
  (linguistic) annotations.

site_author: Dirk Roorda

theme:
  name: material
  logo: 'images/tf-small.png'
  feature:
    tabs: false
repo_url: 'https://github.com/dans-labs/text-fabric/'

pages:
  - Home: 'index.md'
  - News: 'News.md'
  - Api:
    - 'General': 'Api/General.md'
    - 'Hebrew Bible': 'Api/Bhsa.md'
    - 'Cuneiform Tablets': 'Api/Cunei.md'
    - 'Auxiliary': 'Api/Lib.md'
  - Server:
    - 'Service': 'Server/Service.md'
    - 'Web': 'Server/Web.md'
  - Model:
    - 'Data': 'Model/Data-Model.md'
    - 'Format': 'Model/File-formats.md'
    - 'Tweaks': 'Model/Optimizations.md'
  - Create:
    - 'Make TF': 'Create/CreateTF.md'
    - 'Example data': 'Create/ExampleText.md'
  - Details:
    - 'Search': 'Search.md'

markdown_extensions:
  - admonition
  - codehilite:
      guess_lang: false
      linenums: true
  - toc:
      permalink: true
  - pymdownx.details
  - pymdownx.superfences
  - pymdownx.mark
back to top