Skip to content

Commit

Permalink
Fix relative links
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesLoder committed Nov 25, 2024
1 parent e67b5a3 commit 07e5ba9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 4 deletions.
6 changes: 6 additions & 0 deletions docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ export default defineConfig({
integrations: [
starlight({
title: `hebrew-transliteration v${process.env.npm_package_version || ""}`,
head: [
{
tag: "base",
href: process.env.NODE_ENV === "production" ? "/hebrew-transliteration" : "/"
}
],
plugins: [
starlightTypeDoc({
entryPoints: ["./src/index.ts"],
Expand Down
17 changes: 13 additions & 4 deletions docs/src/content/docs/getting-started/quick-start.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
title: Quickstart
next: false
---

import { Code, TabItem, Tabs } from "@astrojs/starlight/components";
import { Code, TabItem, Tabs, CardGrid, LinkCard } from "@astrojs/starlight/components";

Create customized Hebrew transliterations.

Expand Down Expand Up @@ -59,6 +60,14 @@ Use it live at [https://hebrewtransliteration.app](https://hebrewtransliteration

This package contains 3 functions for:

- transliteration - [`transliterate()`](/api/functions/transliterate)
- removing niqqud - [`remove()`](/api/functions/remove)
- sequencing text - [`sequence()`](/api/functions/sequence)
<LinkCard
title="Transliteration"
href="/api/functions/transliterate"
description="Create customized transliterations"
/>
<LinkCard title="Removing Niqqud" href="/api/functions/remove" description="Remove accent marks and vowel points" />
<LinkCard
title="Sequencing Text"
href="/api/functions/sequence"
description="Sequence characters according to the SBL Hebrew font manual"
/>

0 comments on commit 07e5ba9

Please sign in to comment.