User Profile Bio

Introduced on April 3, 2026, the User Profile Bio feature allows users to provide a rich-text self-description that is displayed on their profile page and accompanying their contributions.

Purpose

The bio serves to:

Implementation Detail

Storage

User bios are stored in the users table within the PostgreSQL database. The schema includes a bio column (TEXT) that supports CommonMark Markdown.

API Access

The bio is exposed through the following endpoints:

UI Integration

In the React SPA (wikantik-frontend), the bio is rendered using the standard wiki Markdown components, ensuring consistent styling with the rest of the wiki content. It appears in the User Profile view and as a hover-card on author links in page footers.

See Also