Sub-skill of docx: Extract Text with Pandoc (+2).
Scanned 9/9/2026
Install to Claude Code
npx -y skills add vamseeachanta/workspace-hub --skill extract-text-with-pandoc --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Extract Text With Pandoc?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/vamseeachanta-extract-text-with-pandoc-workspace-hub)More formats (shields.io, HTML) on the badges page.
---
name: docx-extract-text-with-pandoc
description: 'Sub-skill of docx: Extract Text with Pandoc (+2).'
version: 1.1.0
category: data
type: reference
scripts_exempt: true
---
# Extract Text with Pandoc (+2)
## Extract Text with Pandoc
```bash
pandoc document.docx -t plain -o output.txt
pandoc document.docx -t markdown -o output.md
```
## Python Text Extraction
```python
from docx import Document
doc = Document("document.docx")
for para in doc.paragraphs:
print(para.text)
```
## Extract Tables
```python
from docx import Document
doc = Document("document.docx")
for table in doc.tables:
for row in table.rows:
for cell in row.cells:
print(cell.text, end="\t")
print()
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Understand the components, mechanics, and constraints of context in agent systems. Use when designing agent architectures, debugging context-related failures, or optimizing context usage.