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-09-28 20:59:28 -05:00
|
|
|
|
|
|
|
|
|
export interface LuaProps {
|
2022-09-30 17:20:17 -05:00
|
|
|
|
lua: Documentation
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function Lua(props: LuaProps) {
|
|
|
|
|
return (
|
2024-02-26 13:18:49 -05:00
|
|
|
|
<Layout>
|
2022-09-28 20:59:28 -05:00
|
|
|
|
<SEO title="Conky – Lua API" description="Conky Lua API documentation" />
|
2024-04-22 14:13:56 +07:00
|
|
|
|
<main className="w-full pt-4">
|
2022-09-28 20:59:28 -05:00
|
|
|
|
<div>
|
2024-04-22 14:13:56 +07:00
|
|
|
|
<h1 className="text-2xl px-2 lg:px-4" data-cy="page-heading">
|
2023-02-26 09:37:41 -05:00
|
|
|
|
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-09-28 20:59:28 -05:00
|
|
|
|
|
2024-02-26 13:18:49 -05:00
|
|
|
|
return { props: { lua } }
|
2022-09-28 20:59:28 -05:00
|
|
|
|
}
|