Build
Build site.
build(options)
Build the site.
Source code in src/mccole/build.py
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 | |
_build_page(config, env, slug, src_path, ix_entries=None)
Handle a Markdown file.
Source code in src/mccole/build.py
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 | |
_build_index_page(config, env, ix_entries)
Build the index page from collected ix_entries.
Source code in src/mccole/build.py
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 | |
_build_other(config, src_path)
Handle non-Markdown file.
Source code in src/mccole/build.py
166 167 168 169 | |
_collect_figure_numbers(dst_path, doc)
Number figures and return IDs.
Source code in src/mccole/build.py
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 | |
_collect_table_numbers(dst_path, doc)
Number tables and return IDs.
Source code in src/mccole/build.py
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 | |
_fill_element_numbers(dst_path, doc, prefix, known, text)
Fill in cross-reference numbers.
Source code in src/mccole/build.py
235 236 237 238 239 240 241 242 243 244 245 246 | |
_find_files(config)
Find section files and other files.
Source code in src/mccole/build.py
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 | |
_get_slug_from_link(raw)
Convert '@/something/' to 'something'.
Source code in src/mccole/build.py
268 269 270 271 | |
_is_interesting_file(config, excludes, filepath)
Is this file worth copying over?
Source code in src/mccole/build.py
274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 | |
_load_configuration(options)
Load configuration and combine with options.
Source code in src/mccole/build.py
299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 | |
_load_book_title(src_path, home_page)
Extract the H1 title from the home page as the book title.
Source code in src/mccole/build.py
329 330 331 332 333 334 335 336 337 338 339 | |
_load_glossary(src_path)
Load glossary keys and terms.
Source code in src/mccole/build.py
342 343 344 345 346 347 | |
_load_order(src_path, home_page)
Determine section order from home page file.
Source code in src/mccole/build.py
350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | |
_load_order_section(doc, selector, labeller)
Load a section of the table of contents from README.md DOM.
Source code in src/mccole/build.py
370 371 372 373 374 375 376 377 378 379 380 | |
_make_context(config, slug, metadata=None)
Make rendering context for a particular file.
Source code in src/mccole/build.py
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 | |
_make_output_path(config, src_path, suffix=None)
Generate output file path.
Source code in src/mccole/build.py
427 428 429 430 431 432 433 434 435 436 437 438 | |
_make_root_prefix(config, path)
Create prefix to root for path.
Source code in src/mccole/build.py
441 442 443 444 445 446 | |
_patch_bibliography_links(config, src_path, dst_path, doc)
Convert b: bibliography links.
Source code in src/mccole/build.py
449 450 451 | |
_patch_figure_numbers(config, src_path, dst_path, doc)
Insert figure numbers.
Source code in src/mccole/build.py
454 455 456 457 | |
_patch_glossary_links(config, src_path, dst_path, doc)
Convert g: glossary links.
Source code in src/mccole/build.py
460 461 462 | |
_patch_markdown_attribute(config, src_path, dst_path, doc)
Remove markdown='1' attribute.
Source code in src/mccole/build.py
465 466 467 468 | |
_patch_pre_code_classes(config, src_path, dst_path, doc)
Add language classes to
elements.
Source code in src/mccole/build.py
471
472
473
474
475
def _patch_pre_code_classes(config, src_path, dst_path, doc):
"""Add language classes to <pre> elements."""
for node in doc.select("pre>code"):
cls = node.get("class", [])
node.parent["class"] = node.parent.get("class", []) + cls
_patch_root_links(config, src_path, dst_path, doc)
Convert @ links to relative path to root.
Source code in src/mccole/build.py
478 479 480 481 482 483 484 485 486 487 488 489 490 | |
_patch_special_link(config, src_path, dst_path, doc, prefix, stem, change_text)
Patch specially-prefixed links.
Source code in src/mccole/build.py
493 494 495 496 497 498 499 500 501 502 | |
_patch_table_numbers(config, src_path, dst_path, doc)
Insert figure numbers.
Source code in src/mccole/build.py
505 506 507 508 | |
_patch_terms_defined(config, src_path, dst_path, doc)
Insert terms defined where requested.
Source code in src/mccole/build.py
511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 | |
_patch_title(config, src_path, dst_path, doc)
Make sure the HTML title element is set.
Source code in src/mccole/build.py
542 543 544 545 546 547 548 549 550 551 | |