(we are switching to a new theme,
don't worry if things look different for a while!)

Site Navigation

Plans

Massive Wiki Roadmap
Pier2Pier
Massive Wiki Builder redesign

For Testing

wiki link test page
Mistletoe parser test page
Mistletoe & the ampersand story

Edit on GitHub


NXC Architecture

This document provides an overview of the NXC (Massive Wiki Builder) architecture, detailing the core components and their interactions.

Core Components

NXC consists of several key components that work together to transform Markdown files into a static website:

graph TD
    A[NXC CLI] --> B[Initialization Module]
    A --> C[Build Module]
    C --> D[Markdown Processor]
    D --> E[Mistletoe Renderer]
    E --> F[MassiveWikiRenderer]
    C --> G[Template Engine]
    G --> H[Jinja2]
    C --> I[Search Index Generator]
    I --> J[Lunr.js]

1. Command Line Interface (CLI)

The entry point for user interaction, handling command-line arguments and dispatching to the appropriate functionality:

2. Initialization Module

Responsible for setting up a new wiki site:

3. Build Module

The core engine that transforms Markdown files into HTML:

4. Markdown Processor

Handles parsing and transformation of Markdown content:

5. Custom Renderer

Extensions to the Mistletoe Markdown parser:

6. Template Engine

Uses Jinja2 to render HTML templates:

Directory Structure

nxc/
├── __init__.py
├── nxc.py                  # Main entry point
├── mistletoe_renderer/     # Custom Markdown renderer
│   ├── __init__.py
│   ├── massivewiki.py      # Wiki link processor
│   ├── render.py           # Rendering utilities
│   └── test.py             # Tests
└── templates/              # Default templates
    ├── Sidebar.md
    ├── gitignore-template.txt
    ├── netlify.toml
    ├── nxc-template.yaml
    ├── package.json
    ├── requirements.txt
    └── this-website-themes/
        └── dolce/          # Default theme

Module Interactions

sequenceDiagram
    participant CLI as Command Line Interface
    participant Build as Build Module
    participant MD as Markdown Processor
    participant Render as MassiveWikiRenderer
    participant Template as Template Engine
    participant FS as File System

    CLI->>Build: Invoke build with arguments
    Build->>FS: Read configuration
    Build->>FS: Collect input files
    loop For each Markdown file
        Build->>MD: Process file
        MD->>Render: Convert to HTML
        Render-->>MD: Return HTML
        MD->>Template: Provide content
        Template->>FS: Write HTML file
    end
    Build->>FS: Copy static assets
    Build->>FS: Generate index files

Extension Points

NXC is designed with several extension points:

  1. Templates: Custom themes can be created by providing alternative templates
  2. Renderers: The custom renderer can be extended for additional markdown features
  3. Configuration: The YAML configuration allows customization of site behavior

Dependency Architecture

graph TD
    A[nxc] --> B[mistletoe]
    A --> C[Jinja2]
    A --> D[pyyaml]
    A --> E[python-dateutil]
    F[Lunr] -.-> A
    G[Node.js] -.-> F
    
    classDef optional fill:#f9f,stroke:#333,stroke-dasharray: 5 5;
    class F,G optional

Core Python dependencies:

Optional dependencies: