2022-09-28 20:59:28 -05:00
|
|
|
|
import Layout from '../components/Layout'
|
|
|
|
|
import SEO from '../components/SEO'
|
2022-10-04 22:37:40 -05:00
|
|
|
|
import { getLua, Documentation, filterDesc } from '../utils/doc-utils'
|
2022-09-30 11:31:40 -05:00
|
|
|
|
import Docs from '../components/Docs'
|
2022-10-01 15:32:01 -05:00
|
|
|
|
import { getSearchIndex, SearchIndex } from '../utils/search'
|
2022-09-28 20:59:28 -05:00
|
|
|
|
|
|
|
|
|
export interface LuaProps {
|
2022-09-30 17:20:17 -05:00
|
|
|
|
lua: Documentation
|
2022-10-01 15:32:01 -05:00
|
|
|
|
searchIndex: SearchIndex
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Lua(props: LuaProps) {
|
|
|
|
|
return (
|
2022-10-01 15:32:01 -05:00
|
|
|
|
<Layout searchIndex={props.searchIndex}>
|
2022-09-28 20:59:28 -05:00
|
|
|
|
<SEO title="Conky – Lua API" description="Conky Lua API documentation" />
|
|
|
|
|
<main className="w-full">
|
|
|
|
|
<div>
|
2023-02-26 09:37:41 -05:00
|
|
|
|
<h1 className="text-2xl" data-cy="page-heading">
|
|
|
|
|
Lua API
|
|
|
|
|
</h1>
|
2022-09-28 20:59:28 -05:00
|
|
|
|
</div>
|
2022-09-30 17:20:17 -05:00
|
|
|
|
<Docs docs={props.lua} braces={false} assign={false} />
|
2022-09-28 20:59:28 -05:00
|
|
|
|
</main>
|
|
|
|
|
</Layout>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getStaticProps() {
|
2022-10-04 22:37:40 -05:00
|
|
|
|
const lua = filterDesc(getLua())
|
2022-10-01 15:32:01 -05:00
|
|
|
|
const searchIndex = getSearchIndex()
|
2022-09-28 20:59:28 -05:00
|
|
|
|
|
2022-10-01 15:32:01 -05:00
|
|
|
|
return { props: { lua, searchIndex } }
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|