1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-27 17:18:33 +00:00
conky/web/pages/lua.tsx

34 lines
928 B
TypeScript
Raw Normal View History

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'
import Docs from '../components/Docs'
2022-10-01 15:32:01 -05:00
import { getSearchIndex, SearchIndex } from '../utils/search'
export interface LuaProps {
2022-09-30 17:20:17 -05:00
lua: Documentation
2022-10-01 15:32:01 -05:00
searchIndex: SearchIndex
}
export default function Lua(props: LuaProps) {
return (
2022-10-01 15:32:01 -05:00
<Layout searchIndex={props.searchIndex}>
<SEO title="Conky Lua API" description="Conky Lua API documentation" />
<main className="w-full">
<div>
<h1 className="text-2xl" data-cy="page-heading">
Lua API
</h1>
</div>
2022-09-30 17:20:17 -05:00
<Docs docs={props.lua} braces={false} assign={false} />
</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-10-01 15:32:01 -05:00
return { props: { lua, searchIndex } }
}