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