Test Project

test demo

Test Project

This is a test project demonstrating the new hierarchical .page directory structure.

Features

  • Support for nested directories
  • Include files from the same directory
  • Page-specific assets like images

Code Example

Here's some sample code included from a separate file:

!/usr/bin/env python3

"""Example Python code for the test project"""

def hello_world(): """Print a friendly greeting""" print("Hello from the test project!") return "Success"

if name == "main": hello_world()

More Details

You can also include markdown snippets:

Additional Details

This content is included from a separate markdown file (details.md) in the same .page directory.

You can use this pattern to: - Break up long documents into logical sections - Reuse content across multiple pages - Keep code examples in separate files for syntax highlighting

This demonstrates the new .page directory structure where each page can have: - A main page.md file (this file) - Include files (.md, .py, etc.) - Assets like images