get_project_wiki_page
Retrieve a specific wiki page for a GitLab project by providing project ID, slug, and optional version. Supports rendering in HTML format for enhanced readability and integration.
Instructions
Get a specific wiki page for a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_id | No | ||
render_html | No | ||
slug | No | ||
version | No |
Input Schema (JSON Schema)
{
"properties": {
"project_id": {
"type": "string"
},
"render_html": {
"type": "boolean"
},
"slug": {
"type": "string"
},
"version": {
"type": "string"
}
},
"type": "object"
}