https://github.com/Dans-labs/text-fabric
Raw File
Tip revision: 439cc8ad87dbba5e298fcfd8a28fd622e9becab3 authored by Dirk Roorda on 08 July 2018, 19:45:27 UTC
crisper icon
Tip revision: 439cc8a
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/tficon-small.png'
  feature:
    tabs: false
repo_url: 'https://github.com/dans-labs/text-fabric/'

pages:
  - Home: 'index.md'
  - News: 'News.md'
  - Code:
    - 'Overview' : 'Code/Overview.md'
    - 'Stats (overall)' : 'Code/Stats.md'
    - 'Stats (TF-base)' : 'Code/StatsBase.md'
    - 'Stats (TF-search)' : 'Code/StatsSearch.md'
    - 'Stats (TF-apps)' : 'Code/StatsApps.md'
    - 'Stats (TF-server)' : 'Code/StatsServer.md'
  - Api:
    - 'General': 'Api/General.md'
    - 'Apps': 'Api/Apps.md'
    - 'Hebrew Bible': 'Api/Bhsa.md'
    - 'Cuneiform Tablets': 'Api/Cunei.md'
    - 'Auxiliary': 'Api/Lib.md'
  - Server:
    - 'Service': 'Server/Service.md'
    - 'Web': 'Server/Web.md'
    - 'Common': 'Server/Common.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