edit_project_wiki_page
Modify an existing GitLab project wiki page by updating content, title, format, or slug. Use this tool to maintain accurate and up-to-date project documentation efficiently.
Instructions
Edit an existing wiki page for a GitLab project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | No | ||
format | No | ||
project_id | No | ||
slug | No | ||
title | No |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"type": "string"
},
"format": {
"enum": [
"markdown",
"rdoc",
"asciidoc",
"org"
],
"type": "string"
},
"project_id": {
"type": "string"
},
"slug": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
}