delete_row
Delete a row from a Markdown table using its version hash and row index, returning a new hash for safe subsequent edits.
Instructions
Delete a row. Requires version hash from read_table.
On success returns ONLY v:{new_hash}.
On error returns JSON with "error" and "message" fields.
Args: file_path: Absolute path to the Markdown file. table_index: 0-based table index from list_tables. version: 12-char hex hash from read_table (after "v:"). row_index: 0-based data row index to delete (header row is NOT counted).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| version | Yes | ||
| file_path | Yes | ||
| row_index | Yes | ||
| table_index | Yes |