Skip to content
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

fix: Elimination of unnecessary space #550

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
Next Next commit
fix: Elimination of unnecessary space
  • Loading branch information
silverskyvicto committed Sep 3, 2024
commit 909f5863810d3128acfd94eae39d8d58473a97a6
2 changes: 1 addition & 1 deletion theme.config.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const config: DocsThemeConfig = {
const { title } = useConfig()
return (
<>
<title>{title ? title + ' | Prompt Engineering Guide': 'Prompt Engineering Guide'} </title>
<title>{title ? title + ' | Prompt Engineering Guide': 'Prompt Engineering Guide'}</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="Prompt Engineering Guide" />
<meta property="og:description" content="A Comprehensive Overview of Prompt Engineering" />
Expand Down