Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions docs/blog/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: Blog
---

# Blog
12 changes: 12 additions & 0 deletions docs/blog/posts/hello-world.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
title: Hello, world
date: 2025-09-01
tags:
- getting-started
authors:
- Kenny
---

Welcome to the blog! This is your first post.

You can add more posts under docs/blog/posts with frontmatter like title, date, and tags.
5 changes: 5 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
tags:
- installation
---

# Installation Guide

## Using pip
Expand Down
5 changes: 5 additions & 0 deletions docs/mcp-integration.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
tags:
- mcp
---

# MCP (Model Context Protocol) Integration

The struct tool now supports MCP (Model Context Protocol) integration, providing a programmable interface to interact with structure definitions. This enables automation and integration with other tools, particularly AI-assisted development workflows.
Expand Down
7 changes: 7 additions & 0 deletions docs/quickstart.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
---
tags:
- quickstart
- docker
- mcp
---

# Quick Start

## Quick Start Using Docker
Expand Down
4 changes: 4 additions & 0 deletions docs/tags.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---
title: Tags
---
# Tags
6 changes: 6 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ site_dir: site/docs
# Navigation structure based on existing docs
nav:
- Home: index.md
- Blog: blog/index.md
- Tags: tags.md
- Getting Started:
- Installation: installation.md
- Quick Start: quickstart.md
Expand Down Expand Up @@ -93,6 +95,10 @@ markdown_extensions:

plugins:
- search
- social
- blog
- tags:
tags_file: tags.md
- git-revision-date-localized:
enable_creation_date: true

Expand Down
Loading