I’ve implemented a comment feature (Giscus) using GitHub Discussions in Astro’s documentation template Starlight, so I’m leaving this as a record for future reference.
What is Giscus?
Giscus is a commenting system that utilizes GitHub Discussions.
It’s lightweight and uses GitHub authentication, making it excellent for spam prevention.
Prerequisites
An Astro Starlight website is set up
You have a GitHub account
You have a repository with GitHub Discussions enabled
Installation Steps
Install starlight-giscus
First, install the starlight-giscus plugin. Run the following command in your terminal:
For the slug, specify the name of the md or mdx file you created in the src/content/docs/ directory. (In this case, it’s test.mdx, so we specify ‘test’ for the slug)
Start the server and confirm that the submenu has been added to the sidebar.
Generating from Directory Structure
It’s troublesome to directly write in astro.config.mjs every time, so let’s introduce a method to automatically generate from the directory structure.
Let’s look at the Reference submenu.
astro.config.mjs
// @ts-check
import { defineConfig } from'astro/config';
import starlight from'@astrojs/starlight';
// https://astro.build/config
exportdefaultdefineConfig({
integrations: [
starlight({
title: 'My Docs',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.
Start the server and confirm that the submenu has been added to the sidebar.
Now you’ve successfully added submenus to the sidebar.
If you want to add a different classification, you can simply create a directory in the same way and add it to the sidebar.
For general use, the method of automatically generating from the directory structure is convenient, but if you want to reuse the same mdx, it might be good to use the direct description method.
Changing the Site Title
By default, the site title is set to “My Docs”.
To change the site title, open the src/astro.config.mjs file and change the title:
astro.config.mjs
// @ts-check
import { defineConfig } from'astro/config';
import starlight from'@astrojs/starlight';
// https://astro.build/config
exportdefaultdefineConfig({
integrations: [
starlight({
title: 'Test Docs',
social: {
github: 'https://github.com/withastro/starlight',
},
sidebar: [
{
label: 'Guides',
items: [
// Each item here is one entry in the navigation menu.