1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-03 07:29:10 +00:00
conky/web/pages/lua.tsx
2024-04-22 07:22:34 -04:00

31 lines
773 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import Layout from '../components/Layout'
import SEO from '../components/SEO'
import { getLua, Documentation, filterDesc } from '../utils/doc-utils'
import Docs from '../components/Docs'
export interface LuaProps {
lua: Documentation
}
export default function Lua(props: LuaProps) {
return (
<Layout>
<SEO title="Conky Lua API" description="Conky Lua API documentation" />
<main className="w-full pt-4">
<div>
<h1 className="text-2xl px-2 lg:px-4" data-cy="page-heading">
Lua API
</h1>
</div>
<Docs docs={props.lua} braces={false} assign={false} />
</main>
</Layout>
)
}
export async function getStaticProps() {
const lua = filterDesc(getLua())
return { props: { lua } }
}