Use headings to organize your content and make it easier to read.
H1 to H3 headings get anchor links and show up in the table of contents for easy navigation.
nuxt.config.ts:export default defineNuxtConfig({
content: {
renderer: {
anchorLinks: false
}
}
})
nuxt.config.ts:export default defineNuxtConfig({
content: {
build: {
markdown: {
toc: {
depth: 3
}
}
}
}
})
# Pohon UI
## What's new in v4?
### Enhanced components
#### Getting started
Structure your content with clear paragraphs and consistent text formatting for better readability.
Pohon UI provides a comprehensive collection of Vue components, composables and utilities for building modern, accessible applications with consistent design and enhanced user experience.
Pohon UI provides a comprehensive collection of Vue components, composables and utilities for building modern, accessible applications with consistent design and enhanced user experience.
Strong text
**Strong text**
Emphasized text
*Emphasized text*
To create a link, wrap the link text in brackets followed by the URL in parentheses. Works for both external and internal links.
[Nuxt documentation](https://nuxt.com)
Use blockquotes to highlight important information or quotes.
Pohon UI automatically adapts to your theme settings, ensuring consistent typography across your entire application.
> Pohon UI automatically adapts to your theme settings, ensuring consistent typography across your entire application.
Use horizontal rules to visually separate content sections.
---
Below is the theme configuration skeleton for the ProseHeadersAndText. Since the component is provided unstyled by default, you will need to fill in these values to apply your own custom look and feel. If you prefer to use our pre-built, opinionated styling, you can instead use our UnoCSS preset, this docs is using it as well.
export default defineAppConfig({
pohon: {
prose: {
headersAndText: {}
}
}
};
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import pohon from 'pohon-ui/vite'
export default defineAppConfig({
pohon: {
prose: {
headersAndText: {}
}
}
};