Add initial setup for mkdocs

This commit is contained in:
Andrzej Klajnert 2020-05-11 19:33:54 +02:00
parent 23222e5e09
commit b93f3f0b39
4 changed files with 107 additions and 0 deletions

BIN
docs/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

72
docs/prepare.py Normal file
View File

@ -0,0 +1,72 @@
import os
import re
from pathlib import Path
GITHUB_URL = r"https://github.com/seleniumbase/SeleniumBase/blob/master/"
ROOT_DIR = Path(__file__).parents[1]
URL_PATTERN = re.compile(r"(?:\(|<a href=\")(?P<url>{}[\w/.]+\.md)(?:\)|\")".format(GITHUB_URL))
MD_PATH_PATTERN = re.compile(r"\[.*\]\((?P<path>[\w\\._/]+\.md)\)")
HEADER_PATTERN = re.compile(
r"^(?P<level>#+)\s*(<[\w\s=\":/.]+>)?\s*\**(?P<header>.*[\w`]):?\**\s*$",
flags=re.MULTILINE,
)
PROCESSED_PATHS = set()
def normalize_path(path):
path = Path(path).absolute().relative_to(ROOT_DIR)
return str(path).replace("\\", "/")
def read_file(file_name):
path = ROOT_DIR / file_name
with path.open() as file_handle:
content = file_handle.read()
return content
def process_file(file_name):
content = read_file(file_name)
urls = URL_PATTERN.findall(content)
content = content.replace("<br />", " \n")
content = re.sub(HEADER_PATTERN, "\g<level> \g<header>", content)
directory = "/".join(normalize_path(file_name).split("/")[:-1])
paths = set()
md_paths = MD_PATH_PATTERN.findall(content)
for md_path in md_paths:
path = md_path.lstrip("/")
if (ROOT_DIR / directory / path).exists():
path = (ROOT_DIR / directory / path)
else:
path = (ROOT_DIR / path)
path = path.resolve().relative_to(ROOT_DIR)
paths.add(normalize_path(path))
content = content.replace("(" + md_path + ")", normalize_path(path))
for url in urls:
path = url[len(GITHUB_URL):]
paths.add(path)
content = content.replace(url, normalize_path(os.path.relpath(path, directory)))
output_path = ROOT_DIR / "docs" / file_name
if not output_path.parent.is_dir():
os.makedirs(output_path.parent)
with output_path.open("w+") as output_file:
output_file.write(content)
PROCESSED_PATHS.add(normalize_path(file_name))
for path in paths:
if path not in PROCESSED_PATHS:
process_file(normalize_path(path))
def main(*args, **kwargs):
files_to_process = ["README.md"]
for dir_ in os.listdir(ROOT_DIR / "help_docs"):
files_to_process.append(os.path.join("help_docs", dir_))
for file_ in files_to_process:
process_file(file_)

3
docs/requirements.txt Normal file
View File

@ -0,0 +1,3 @@
mkdocs==1.1
mkdocs-material==5.0.2
mkdocs-simple-hooks==0.1.0

32
mkdocs.yml Normal file
View File

@ -0,0 +1,32 @@
site_name: SeleniumBase
repo_url: https://github.com/seleniumbase/SeleniumBase/
edit_uri: ""
site_dir: "site"
docs_dir: "docs"
markdown_extensions:
- codehilite
- toc:
permalink: true
theme:
name: material
logo: https://cdn2.hubspot.net/hubfs/100006/images/super_square_logo_3a.png
favicon: img/favicon.ico
plugins:
- search
- mkdocs-simple-hooks:
hooks:
on_pre_build: docs.prepare:main
nav:
- Introduction: README.md
- Features: help_docs/features_list.md
- Options: help_docs/customizing_test_runs.md
- Mobile Testing: help_docs/mobile_testing.md
- Examples: https://github.com/seleniumbase/SeleniumBase/tree/master/examples
- Reports: examples/example_logs/ReadMe.md
- API: help_docs/method_summary.md
- Site Tours: examples/tour_examples/ReadMe.md
- Translations: https://github.com/seleniumbase/SeleniumBase/tree/master/examples/translations
- Recorder: seleniumbase/utilities/selenium_ide/ReadMe.md
- MasterQA: examples/master_qa/ReadMe.md
- Visual Testing: examples/visual_testing/ReadMe.md
- GitHub CI: integrations/github/workflows/ReadMe.md