Guides

Database

This is another Guides page — showing multiple posts in one category.

Code Block Features

The theme automatically adds to all code blocks:

  • Syntax highlighting — Set the language in the editor
  • Copy button — Appears on hover
  • Dark background — Always dark, even in light mode
interface Config {
  host: string;
  port: number;
  pool: { min: number; max: number };
}

const config: Config = {
  host: 'localhost',
  port: 5432,
  pool: { min: 2, max: 10 },
};

Feedback Widget

Add a "Was this helpful?" prompt. Via HTML card:

<div class="docs-feedback">
  <p>Was this page helpful?</p>
  <button class="docs-feedback-btn">Yes</button>
  <button class="docs-feedback-btn">No</button>
  <p class="docs-feedback-thanks" style="display:none">Thanks!</p>
</div>

Live example:

Was this page helpful?

How to Edit

  1. Replace this content with your feature docs
  2. Or delete this post and create your own
  3. Assign the right tag for the category you want