From f2fec908626f0ee6222ba364abf2c170435e9a9a Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Tue, 27 Sep 2022 18:41:38 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A3=20readthedocs=20=D1=83=D0=BC=D0=B5=D1=80?= =?UTF-8?q?=20mkdocs.=20=D0=A3=D0=B1=D0=B8=D1=80=D0=B0=D0=B5=D0=BC=20?= =?UTF-8?q?=D1=8D=D1=82=D1=83=20=D0=BF=D0=BB=D1=82=D1=84=D0=BE=D1=80=D0=BC?= =?UTF-8?q?=D1=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .readthedocs.yaml | 20 --------------- docs/{index.md => readme.md} | 0 mkdocs.yml | 48 ------------------------------------ 3 files changed, 68 deletions(-) delete mode 100644 .readthedocs.yaml rename docs/{index.md => readme.md} (100%) delete mode 100644 mkdocs.yml diff --git a/.readthedocs.yaml b/.readthedocs.yaml deleted file mode 100644 index b5f6d81..0000000 --- a/.readthedocs.yaml +++ /dev/null @@ -1,20 +0,0 @@ -# .readthedocs.yaml -# Read the Docs configuration file -# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details - -# Required -version: 2 - -# Set the version of Python and other tools you might need -build: - os: ubuntu-20.04 - tools: - python: "3.8" - -mkdocs: - configuration: mkdocs.yml - -# Optionally declare the Python requirements required to build your docs -python: - install: - - requirements: requirements.txt diff --git a/docs/index.md b/docs/readme.md similarity index 100% rename from docs/index.md rename to docs/readme.md diff --git a/mkdocs.yml b/mkdocs.yml deleted file mode 100644 index 35a21fe..0000000 --- a/mkdocs.yml +++ /dev/null @@ -1,48 +0,0 @@ -site_name: anixart -repo_url: https://github.com/SantaSpeen/anixart -site_author: Maxim Khomutov -remote_name: master -use_directory_urls: true - -nav: - - Введение: index.md - - Общая информация: - Быстрое начало: home/index.md - Примеры использования: home/examples.md - - API библиотеки: - Введение: LibApi/index.md - Метки и условные обозначения: LibApi/tags.md - Методы: LibApi/methods.md - Неописанные методы: LibApi/todo_methods.md - - API Anixart: - Введение: anixApi/index.md - Auth: anixApi/auth.md - Profile: anixApi/profile.md - Collections: anixApi/collections.md - Release: anixApi/release.md - Other: anixApi/other.md - - - CHANGELOG: CHANGELOG.md - - Обратная связь: callback.md - -theme: - name: material - locale: ru - highlightjs: true - palette: - - scheme: default - toggle: - icon: material/weather-sunny - name: Включить ночную тему. - - scheme: slate - toggle: - icon: material/weather-night - name: Включить дневную тему. - -markdown_extensions: - - pymdownx.highlight: - anchor_linenums: true - - pymdownx.inlinehilite - - pymdownx.snippets - - pymdownx.superfences - - tables