Skip to content

Config Cleanup #8

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 26, 2024
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
2 changes: 1 addition & 1 deletion blog/2019/2019-05-28-first-blog-post.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
slug: first-blog-post
title: First Blog Post
authors: [jaker]
tags: [hola, docusaurus]
tags: [hello, help]
---

Lorem ipsum dolor sit amet...
Expand Down
2 changes: 1 addition & 1 deletion blog/2019/2019-05-29-long-blog-post.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
slug: long-blog-post
title: Long Blog Post
authors: deccer
tags: [hello, docusaurus]
tags: [hello, help]
---

This is the summary of a very long blog post,
Expand Down
13 changes: 5 additions & 8 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ import type {Config} from '@docusaurus/types';
import type * as Preset from '@docusaurus/preset-classic';

const config: Config = {
title: 'Forg Blog',
tagline: 'Frogs and Forgs',
title: 'Graphics Programming Discord Server Blog',
tagline: 'Articles, guides, tips and tricks from and for frogs and forgis of the graphics programming discord',
favicon: 'img/favicon.ico',

// Set the production url of your site here
url: 'https://graphicsprogramming.github.io/',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
// This might cause trouble during local development, switch to '/' then
baseUrl: '/blog/',

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'GraphicsProgramming', // Usually your GitHub org/user name.
projectName: 'blog', // Usually your repo name.
organizationName: 'GraphicsProgramming',
projectName: 'blog',
deploymentBranch: 'gh-pages',
trailingSlash: false,

Expand All @@ -43,10 +41,9 @@ const config: Config = {
type: ['rss', 'atom'],
xslt: true,
},
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl:
'https://github.com/GraphicsProgramming/blog',
'https://github.com/GraphicsProgramming/',
// Useful options to enforce blogging best practices
onInlineTags: 'warn',
onInlineAuthors: 'warn',
Expand Down