# Authoring

URL: https://docs.testvibe.com/reference/authoring

## Page URLs

Most pages are Markdown files whose published URL matches the file path without `.md` . Form help pages are grouped under the Reference section in the published navigation, so their public URLs use `/reference/forms/<slug>` .

Examples:

- `README.md` -> `/`
- `forms/login.md` -> `/reference/forms/login`

## Adding a Form Help Page

1. Create a new Markdown file under `forms/` .
2. Use the kebab-case version of the Wisej form class name.
3. Add the page to `SUMMARY.md` so it shows up in navigation/build output.
Example:

- Form class: `PlaywrightTestConfiguration`
- File: `forms/playwright-test-configuration.md`
- URL: `/reference/forms/playwright-test-configuration`

## Linking From The App

Use the published path (for example `https://docs.testvibe.com/reference/forms/login` ) as the target when opening help from a form.

If you change a URL, prefer adding a redirect in the hosting layer rather than breaking existing links.
