2022-09-29 01:59:28 +00:00
|
|
|
|
import Layout from '../components/Layout'
|
|
|
|
|
import SEO from '../components/SEO'
|
2022-10-05 03:37:40 +00:00
|
|
|
|
import { getVariables, Documentation, filterDesc } from '../utils/doc-utils'
|
2022-09-30 16:31:40 +00:00
|
|
|
|
import Docs from '../components/Docs'
|
2022-10-01 20:32:01 +00:00
|
|
|
|
import { getSearchIndex, SearchIndex } from '../utils/search'
|
2022-09-29 01:59:28 +00:00
|
|
|
|
|
|
|
|
|
export interface VariablesProps {
|
2022-09-30 22:20:17 +00:00
|
|
|
|
variables: Documentation
|
2022-10-01 20:32:01 +00:00
|
|
|
|
searchIndex: SearchIndex
|
2022-09-29 01:59:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Variables(props: VariablesProps) {
|
|
|
|
|
return (
|
2022-10-01 20:32:01 +00:00
|
|
|
|
<Layout searchIndex={props.searchIndex}>
|
2022-09-29 01:59:28 +00:00
|
|
|
|
<SEO
|
|
|
|
|
title="Conky – Variables"
|
|
|
|
|
description="Conky object variables documentation"
|
|
|
|
|
/>
|
|
|
|
|
<main className="w-full">
|
2023-02-26 14:37:41 +00:00
|
|
|
|
<h1 className="text-2xl" data-cy="page-heading">
|
|
|
|
|
Variables
|
|
|
|
|
</h1>
|
2022-09-30 22:20:17 +00:00
|
|
|
|
<Docs docs={props.variables} braces={true} assign={false} />
|
2022-09-29 01:59:28 +00:00
|
|
|
|
</main>
|
|
|
|
|
</Layout>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getStaticProps() {
|
2022-10-05 03:37:40 +00:00
|
|
|
|
const variables = filterDesc(getVariables())
|
2022-10-01 20:32:01 +00:00
|
|
|
|
const searchIndex = getSearchIndex()
|
2022-09-29 01:59:28 +00:00
|
|
|
|
|
2022-10-01 20:32:01 +00:00
|
|
|
|
return { props: { variables, searchIndex } }
|
2022-09-29 01:59:28 +00:00
|
|
|
|
}
|