Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

next -> main #374

Merged
merged 25 commits into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ENV __BUILD_SHA=$BUILD_SHA

WORKDIR /opt/app
COPY . .
RUN bun install --frozen-lockfile --production
RUN bun install --frozen-lockfile

WORKDIR /opt/app/api

Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 4 additions & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,10 @@
"group": "Components",
"tab": "components",
"pages": [
{
"title": "Getting Started",
"href": "/components"
},
{
"title": "Accordion",
"href": "/components/accordion",
Expand Down
39 changes: 37 additions & 2 deletions docs/components/index.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
---
redirect: /components/accordion
---
title: Components
description: Enhance your documentation with components powered by MDX.
---

Alongside regular Markdown, docs.page supports [MDX](https://mdxjs.com/), a format that allows you to use JSX components within your documentation.

Components enable you to enhance your documentation, providing a more interactive and engaging experience for your readers over what is possible with standard Markdown.

## Using Components

To use components in your documentation, you can either use standard Markdown syntax, or the `<Component>` syntax. For example, the `<Info>` component can be used to display an informational message more visible to users:

<Info>This draws attention to useful page information.</Info>

```jsx
<Info>This draws attention to useful page information.</Info>
```

Components also take "props", which are attributes that can be passed to the component to customize its behavior, for example:

```jsx
<Tweet id="1513662173796605958" />
```

## HTML Overrides

Typical markdown syntax supports both markdown tags and also HTML tags. In some scenarios, docs.page will override the HTML tags to render the component instead. For example image markup in markdown (e.g. `![alt text](image.png)`) will be overridden to render the `<Image>` component instead.

Please note that rendering HTML directly in your markdown will not be overridden, and will be rendered as standard HTML. For example an `<img>` tag will not be overridden to render the `<Image>` component.

## Invalid Components

If you attempt to use a component that does not exist, or has a required property which is missing, docs.page will render a red block with a message informing you to take action.
For example:

<ComponentWhichDoesNotExist />

6 changes: 3 additions & 3 deletions website/app/components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ export function Footer() {
const sorted = socials.sort(([a], [b]) => a.localeCompare(b));

return (
<footer className="flex items-center gap-12 pb-12">
<div className="text-sm flex gap-1">
<footer className="md:flex items-center gap-12 pb-12 space-y-3 md:space-y-0">
<div className="text-sm flex items-center justify-center md:justify-start gap-1">
<span>Powered by</span>
<span>⬡</span>
<code>
<a href="https://invertase.io">invertase</a>/
<a href="https://docs.page">docs.page</a>
</code>
</div>
<div className="flex-1 flex flex-wrap items-center justify-end gap-5">
<div className="flex-1 flex flex-wrap items-center justify-center md:justify-end gap-5">
{sorted.map(([name, url]) => (
<div key={name}>
<a
Expand Down
Loading