1 - Mermaid Diagram Support Enabled!

We’re excited to announce that Mermaid diagram support has been enabled on the KintaroAI documentation site!

What’s New

You can now create beautiful diagrams and visualizations directly in your documentation using Mermaid syntax.

Example: Flowchart

graph LR;
  F[Get new task] --> A;
  A[Start] --> B{Is it working?};
  B -- Yes --> C[Great!];
  B -- No --> D[Fix it];
  D --> B;
  C --> F;

Example: Sequence Diagram

sequenceDiagram
  participant LLM Kun
  participant Gen Chan
  LLM Kun->>Gen Chan: Hey Gen Chan, how are you?
  Gen Chan-->>LLM Kun: ❤️

Example: Class Diagram

classDiagram
  class Transformer {
    +forward(input, target)
  }
  class Encoder {
    +int num_layers
    +encode(input)
  }
  class Decoder {
    +int num_layers
    +decode(target, encoder_output)
  }
  
  class MultiHeadAttention {
    +int num_heads
    +compute(query, key, value, mask)
  }
  
  class FeedForward {
    +forward(input)
  }
  
  class PositionalEncoding {
    +add(input)
  }
  
  class LayerNorm {
    +normalize(input)
  }
  
  Transformer *-- Encoder : contains
  Transformer *-- Decoder : contains
  Transformer *-- PositionalEncoding : uses
  
  Encoder *-- MultiHeadAttention : uses self-attention
  Encoder *-- FeedForward
  Encoder *-- LayerNorm : uses
  
  Decoder *-- MultiHeadAttention : uses masked self-attention
  Decoder *-- MultiHeadAttention : uses cross-attention
  Decoder *-- FeedForward
  Decoder *-- LayerNorm : uses

Try It Out

You can use Mermaid diagrams in your Markdown content by wrapping the code in triple backticks with mermaid as the language. See the Mermaid documentation and examples for more diagram types and syntax.

This enhancement makes it much easier to document workflows, architectures, and processes visually on our platform!

2 - KaTeX Math Support Enabled!

We’re excited to announce that KaTeX support has been enabled on the KintaroAI documentation site!

What’s New

You can now write mathematical formulas and chemical equations directly in your documentation using LaTeX syntax:

Inline Math

Use single dollar signs: \(E = mc^2\) \(E = mc^2\)

Block Math

Use double dollar signs for larger equations:

$$
\int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi}
$$
$$ \int_{-\infty}^{\infty} e^{-x^2} dx = \sqrt{\pi} $$

Chemical Equations

KaTeX can render chemical equations:

$$
2H_2 + O_2 \rightarrow 2H_2O
$$
$$ 2H_2 + O_2 \rightarrow 2H_2O $$

Try It Out

Visit our Math Test Page to see examples of mathematical formulas, chemical equations, and complex expressions in action.

This enhancement makes it much easier to document mathematical concepts, algorithms, and scientific content on our platform!

3 - Switched to Hugo Docsy!

Note: Authors and citation features are currently broken. We are working on a fix.

We are excited to announce that the KintaroAI documentation site has switched to the Hugo Docsy theme!

This change brings:

  • Faster site generation
  • Modern, responsive design
  • Improved navigation and search
  • Easier content management for contributors

Stay tuned for more updates and new features!

4 - Authors Feature Enabled

We are excited to announce that the authors feature is now enabled on our site!

You can now specify an author in your post or page front matter, and their profile (name, bio, email, and social links) will be displayed automatically using data from _data/authors.yaml.

Usage Example

Add the following to your post or page front matter:

---
title: "My Awesome Post"
date: 2025-07-15
authors:
  - baraban
  - llm-kun
---

That’s it! The author’s information will appear at the end of your post.

If you want to add more authors, simply update the _data/authors.yaml file with their details.

Happy documenting!

5 - Added citation support

Usage example: Header like this

---
title:  "Added citation support"
date:   2025-04-19 19:49:00 -0500
authors:
  - Baraban
  - LLM Kun
---

will render:

Baraban, & Kun, L. (2025). Added citation support. http://KintaroAI.com/blog/2025/04/19/added-citation-support/ (KintaroAI)

6 - Changed theme to Docsy Jekyll

Now using Docsy Jekyll theme.

Features:

  • Create documentation issue in linked Github repository.
  • Create project issue.
  • Edit current page.
  • Navigation is automatically built out of headers.
  • Left menu.
  • Search (though it would require update in the future).
  • Nice badges, buttons and other formatting features.

7 - Changed Github repo name back

Returned original repo back.

8 - Changed Github repo name

Previous one was auto suspended so created new one.

Stay tuned.

9 - Coming Soon!

Kintaro