2022-09-29 01:59:28 +00:00
|
|
|
|
import Layout from '../components/Layout'
|
|
|
|
|
import SEO from '../components/SEO'
|
2022-09-30 16:31:40 +00:00
|
|
|
|
import { getLua, Doc } from '../utils/doc-utils'
|
|
|
|
|
import Docs from '../components/Docs'
|
2022-09-29 01:59:28 +00:00
|
|
|
|
|
|
|
|
|
export interface LuaProps {
|
2022-09-30 16:31:40 +00:00
|
|
|
|
lua: Doc[]
|
2022-09-29 01:59:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Lua(props: LuaProps) {
|
|
|
|
|
return (
|
|
|
|
|
<Layout>
|
|
|
|
|
<SEO title="Conky – Lua API" description="Conky Lua API documentation" />
|
|
|
|
|
<main className="w-full">
|
|
|
|
|
<div>
|
|
|
|
|
<h1 className="text-2xl">Lua API</h1>
|
|
|
|
|
</div>
|
2022-09-30 16:31:40 +00:00
|
|
|
|
<Docs docs={props.lua} />
|
2022-09-29 01:59:28 +00:00
|
|
|
|
</main>
|
|
|
|
|
</Layout>
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export async function getStaticProps() {
|
|
|
|
|
const lua = getLua()
|
|
|
|
|
|
|
|
|
|
return { props: { lua } }
|
|
|
|
|
}
|