1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
- # Ultralytics YOLO 🚀, AGPL-3.0 license
- """
- Automates the building and post-processing of MkDocs documentation, particularly for projects with multilingual content.
- It streamlines the workflow for generating localized versions of the documentation and updating HTML links to ensure
- they are correctly formatted.
- Key Features:
- - Automated building of MkDocs documentation: The script compiles both the main documentation and
- any localized versions specified in separate MkDocs configuration files.
- - Post-processing of generated HTML files: After the documentation is built, the script updates all
- HTML files to remove the '.md' extension from internal links. This ensures that links in the built
- HTML documentation correctly point to other HTML pages rather than Markdown files, which is crucial
- for proper navigation within the web-based documentation.
- Usage:
- - Run the script from the root directory of your MkDocs project.
- - Ensure that MkDocs is installed and that all MkDocs configuration files (main and localized versions)
- are present in the project directory.
- - The script first builds the documentation using MkDocs, then scans the generated HTML files in the 'site'
- directory to update the internal links.
- - It's ideal for projects where the documentation is written in Markdown and needs to be served as a static website.
- Note:
- - This script is built to be run in an environment where Python and MkDocs are installed and properly configured.
- """
- import os
- import re
- import shutil
- import subprocess
- from pathlib import Path
- from bs4 import BeautifulSoup
- from tqdm import tqdm
- os.environ["JUPYTER_PLATFORM_DIRS"] = "1" # fix DeprecationWarning: Jupyter is migrating to use standard platformdirs
- DOCS = Path(__file__).parent.resolve()
- SITE = DOCS.parent / "site"
- def prepare_docs_markdown(clone_repos=True):
- """Build docs using mkdocs."""
- if SITE.exists():
- print(f"Removing existing {SITE}")
- shutil.rmtree(SITE)
- # Get hub-sdk repo
- if clone_repos:
- repo = "https://github.com/ultralytics/hub-sdk"
- local_dir = DOCS.parent / Path(repo).name
- if not local_dir.exists():
- os.system(f"git clone {repo} {local_dir}")
- os.system(f"git -C {local_dir} pull") # update repo
- shutil.rmtree(DOCS / "en/hub/sdk", ignore_errors=True) # delete if exists
- shutil.copytree(local_dir / "docs", DOCS / "en/hub/sdk") # for docs
- shutil.rmtree(DOCS.parent / "hub_sdk", ignore_errors=True) # delete if exists
- shutil.copytree(local_dir / "hub_sdk", DOCS.parent / "hub_sdk") # for mkdocstrings
- print(f"Cloned/Updated {repo} in {local_dir}")
- # Add frontmatter
- for file in tqdm((DOCS / "en").rglob("*.md"), desc="Adding frontmatter"):
- update_markdown_files(file)
- def update_page_title(file_path: Path, new_title: str):
- """Update the title of an HTML file."""
- # Read the content of the file
- with open(file_path, encoding="utf-8") as file:
- content = file.read()
- # Replace the existing title with the new title
- updated_content = re.sub(r"<title>.*?</title>", f"<title>{new_title}</title>", content)
- # Write the updated content back to the file
- with open(file_path, "w", encoding="utf-8") as file:
- file.write(updated_content)
- def update_html_head(script=""):
- """Update the HTML head section of each file."""
- html_files = Path(SITE).rglob("*.html")
- for html_file in tqdm(html_files, desc="Processing HTML files"):
- with html_file.open("r", encoding="utf-8") as file:
- html_content = file.read()
- if script in html_content: # script already in HTML file
- return
- head_end_index = html_content.lower().rfind("</head>")
- if head_end_index != -1:
- # Add the specified JavaScript to the HTML file just before the end of the head tag.
- new_html_content = html_content[:head_end_index] + script + html_content[head_end_index:]
- with html_file.open("w", encoding="utf-8") as file:
- file.write(new_html_content)
- def update_subdir_edit_links(subdir="", docs_url=""):
- """Update the HTML head section of each file."""
- if str(subdir[0]) == "/":
- subdir = str(subdir[0])[1:]
- html_files = (SITE / subdir).rglob("*.html")
- for html_file in tqdm(html_files, desc="Processing subdir files"):
- with html_file.open("r", encoding="utf-8") as file:
- soup = BeautifulSoup(file, "html.parser")
- # Find the anchor tag and update its href attribute
- a_tag = soup.find("a", {"class": "md-content__button md-icon"})
- if a_tag and a_tag["title"] == "Edit this page":
- a_tag["href"] = f"{docs_url}{a_tag['href'].split(subdir)[-1]}"
- # Write the updated HTML back to the file
- with open(html_file, "w", encoding="utf-8") as file:
- file.write(str(soup))
- def update_markdown_files(md_filepath: Path):
- """Creates or updates a Markdown file, ensuring frontmatter is present."""
- if md_filepath.exists():
- content = md_filepath.read_text().strip()
- # Replace apostrophes
- content = content.replace("‘", "'").replace("’", "'")
- # Add frontmatter if missing
- if not content.strip().startswith("---\n") and "macros" not in md_filepath.parts: # skip macros directory
- header = "---\ncomments: true\ndescription: TODO ADD DESCRIPTION\nkeywords: TODO ADD KEYWORDS\n---\n\n"
- content = header + content
- # Ensure MkDocs admonitions "=== " lines are preceded and followed by empty newlines
- lines = content.split("\n")
- new_lines = []
- for i, line in enumerate(lines):
- stripped_line = line.strip()
- if stripped_line.startswith("=== "):
- if i > 0 and new_lines[-1] != "":
- new_lines.append("")
- new_lines.append(line)
- if i < len(lines) - 1 and lines[i + 1].strip() != "":
- new_lines.append("")
- else:
- new_lines.append(line)
- content = "\n".join(new_lines)
- # Add EOF newline if missing
- if not content.endswith("\n"):
- content += "\n"
- # Save page
- md_filepath.write_text(content)
- return
- def update_docs_html():
- """Updates titles, edit links, head sections, and converts plaintext links in HTML documentation."""
- # Update 404 titles
- update_page_title(SITE / "404.html", new_title="Ultralytics Docs - Not Found")
- # Update edit links
- update_subdir_edit_links(
- subdir="hub/sdk/", # do not use leading slash
- docs_url="https://github.com/ultralytics/hub-sdk/tree/main/docs/",
- )
- # Convert plaintext links to HTML hyperlinks
- files_modified = 0
- for html_file in tqdm(SITE.rglob("*.html"), desc="Converting plaintext links"):
- with open(html_file, encoding="utf-8") as file:
- content = file.read()
- updated_content = convert_plaintext_links_to_html(content)
- if updated_content != content:
- with open(html_file, "w", encoding="utf-8") as file:
- file.write(updated_content)
- files_modified += 1
- print(f"Modified plaintext links in {files_modified} files.")
- # Update HTML file head section
- script = ""
- if any(script):
- update_html_head(script)
- # Delete the /macros directory from the built site
- macros_dir = SITE / "macros"
- if macros_dir.exists():
- print(f"Removing /macros directory from site: {macros_dir}")
- shutil.rmtree(macros_dir)
- def convert_plaintext_links_to_html(content):
- """Convert plaintext links to HTML hyperlinks in the main content area only."""
- soup = BeautifulSoup(content, "html.parser")
- # Find the main content area (adjust this selector based on your HTML structure)
- main_content = soup.find("main") or soup.find("div", class_="md-content")
- if not main_content:
- return content # Return original content if main content area not found
- modified = False
- for paragraph in main_content.find_all(["p", "li"]): # Focus on paragraphs and list items
- for text_node in paragraph.find_all(string=True, recursive=False):
- if text_node.parent.name not in {"a", "code"}: # Ignore links and code blocks
- new_text = re.sub(
- r"(https?://[^\s()<>]*[^\s()<>.,:;!?\'\"])",
- r'<a href="\1">\1</a>',
- str(text_node),
- )
- if "<a href=" in new_text:
- # Parse the new text with BeautifulSoup to handle HTML properly
- new_soup = BeautifulSoup(new_text, "html.parser")
- text_node.replace_with(new_soup)
- modified = True
- return str(soup) if modified else content
- def remove_macros():
- """Removes the /macros directory and related entries in sitemap.xml from the built site."""
- shutil.rmtree(SITE / "macros", ignore_errors=True)
- (SITE / "sitemap.xml.gz").unlink(missing_ok=True)
- # Process sitemap.xml
- sitemap = SITE / "sitemap.xml"
- lines = sitemap.read_text(encoding="utf-8").splitlines(keepends=True)
- # Find indices of '/macros/' lines
- macros_indices = [i for i, line in enumerate(lines) if "/macros/" in line]
- # Create a set of indices to remove (including lines before and after)
- indices_to_remove = set()
- for i in macros_indices:
- indices_to_remove.update(range(i - 1, i + 3)) # i-1, i, i+1, i+2, i+3
- # Create new list of lines, excluding the ones to remove
- new_lines = [line for i, line in enumerate(lines) if i not in indices_to_remove]
- # Write the cleaned content back to the file
- sitemap.write_text("".join(new_lines), encoding="utf-8")
- print(f"Removed {len(macros_indices)} URLs containing '/macros/' from {sitemap}")
- def minify_html_files():
- """Minifies all HTML files in the site directory and prints reduction stats."""
- try:
- from minify_html import minify # pip install minify-html
- except ImportError:
- return
- total_original_size = 0
- total_minified_size = 0
- for html_file in tqdm(SITE.rglob("*.html"), desc="Minifying HTML files"):
- with open(html_file, encoding="utf-8") as f:
- content = f.read()
- original_size = len(content)
- minified_content = minify(content)
- minified_size = len(minified_content)
- total_original_size += original_size
- total_minified_size += minified_size
- with open(html_file, "w", encoding="utf-8") as f:
- f.write(minified_content)
- total_reduction = total_original_size - total_minified_size
- total_percent_reduction = (total_reduction / total_original_size) * 100
- print(f"Minify HTML reduction: {total_percent_reduction:.2f}% " f"({total_reduction / 1024:.2f} KB saved)")
- def main():
- """Builds docs, updates titles and edit links, minifies HTML, and prints local server command."""
- prepare_docs_markdown()
- # Build the main documentation
- print(f"Building docs from {DOCS}")
- subprocess.run(f"mkdocs build -f {DOCS.parent}/mkdocs.yml --strict", check=True, shell=True)
- remove_macros()
- print(f"Site built at {SITE}")
- # Update docs HTML pages
- update_docs_html()
- # Minify HTML files
- minify_html_files()
- # Show command to serve built website
- print('Docs built correctly ✅\nServe site at http://localhost:8000 with "python -m http.server --directory site"')
- if __name__ == "__main__":
- main()
|