Skip to content

Commit

Permalink
Fix syntax highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
Colin McDonnell committed May 13, 2022
1 parent 7d1de14 commit d506b08
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -268,7 +268,7 @@ There are a growing number of tools that are built atop or support Zod natively!
- [`express-zod-api`](https://github.com/RobinTail/express-zod-api): Build Express-based APIs with I/O schema validation and custom middlewares.
- [`zod-to-json-schema`](https://github.com/StefanTerdell/zod-to-json-schema): Convert your Zod schemas into [JSON Schemas](https://json-schema.org/).
- [`json-schema-to-zod`](https://github.com/StefanTerdell/json-schema-to-zod): Convert your [JSON Schemas](https://json-schema.org/) into Zod schemas. [Live demo](https://StefanTerdell.github.io/json-schema-to-zod-react/).
- [`json-to-zod`](https://github.com/rsinohara/json-to-zod): Convert JSON objects into Zod schemas. [Live deme](https://rsinohara.github.io/json-to-zod-react/).
- [`json-to-zod`](https://github.com/rsinohara/json-to-zod): Convert JSON objects into Zod schemas. [Live demo](https://rsinohara.github.io/json-to-zod-react/).
- [`zod-dto`](https://github.com/kbkk/abitia/tree/master/packages/zod-dto): Generate Nest.js DTOs from a Zod schema.
- [`soly`](https://github.com/mdbetancourt/soly): Create CLI applications with zod.
- [`graphql-codegen-typescript-validation-schema`](https://github.com/Code-Hex/graphql-codegen-typescript-validation-schema): GraphQL Code Generator plugin to generate form validation schema from your GraphQL schema
Expand Down
18 changes: 11 additions & 7 deletions index.html
Expand Up @@ -10,7 +10,7 @@
/>
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta
name="twitter:title"
Expand Down Expand Up @@ -70,11 +70,11 @@
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="msapplication-config" content="/static/browserconfig.xml" />
<meta name="theme-color" content="#ffffff" />

<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-FG8DDV0GBR"
></script>

<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
Expand All @@ -85,15 +85,19 @@
</script>

<link
href="//cdn.jsdelivr.net/npm/docsify/lib/themes/vue.css"
type="text/css"
rel="preload"
href="//cdn.jsdelivr.net/npm/docsify@4.12.2/lib/themes/vue.css"
type="text/css"
as="style"
onload="this.onload=null;this.rel='stylesheet';"
/>

<style>
.markdown-section {
max-width: 700px;
max-width: 720px;
}
p > img {
height: 200px;
}
.markdown-section h2 {
padding: 40px 0px 10px 0px;
Expand All @@ -119,6 +123,8 @@
"
></nav>
<div id="app"></div>
<script src="//cdnjs.cloudflare.com/ajax/libs/docsify/4.12.2/docsify.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/prism/1.28.0/components/prism-typescript.min.js"></script>
<script>
window.$docsify = {
subMaxLevel: 1,
Expand All @@ -128,7 +134,5 @@
routerMode: "history",
};
</script>
<script src="//cdn.jsdelivr.net/npm/docsify@4.12.2/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/prismjs@1.28.0/prism.min.js"></script>
</body>
</html>

0 comments on commit d506b08

Please sign in to comment.