mirror of
https://github.com/github/awesome-copilot.git
synced 2026-03-23 17:45:12 +00:00
* Some layout tweaks * SSR resource listing pages Render resource listing pages in Astro for first paint and hydrate client filtering/search behavior on top. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Fixing font path * removing feature plugin reference as we don't track that anymore * button alignment * rendering markdown * Improve skills modal file browsing Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * Improving the layout of the search/filter section --------- Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
20 lines
333 B
Plaintext
20 lines
333 B
Plaintext
---
|
|
import {
|
|
getEmbeddedDataElementId,
|
|
serializeEmbeddedData,
|
|
} from "../scripts/embedded-data";
|
|
|
|
interface Props {
|
|
filename: string;
|
|
data: unknown;
|
|
}
|
|
|
|
const { filename, data } = Astro.props;
|
|
---
|
|
|
|
<script
|
|
id={getEmbeddedDataElementId(filename)}
|
|
type="application/json"
|
|
set:html={serializeEmbeddedData(data)}
|
|
></script>
|