I am submitting my abstract for api is this ready for submission
pandoc --track-changes=all /home/daytona/workspace/attachments/1b71f717-3c7a-4a30-beb1-541304974646/APICON_Abstract_Under_250_Words.docx -o /tmp/abstract.md && cat /tmp/abstract.md
APICON 2026 abstract submission guidelines format word limit
wc -w /tmp/abstract.md && echo "---" && python3 -c " text = open('/tmp/abstract.md').read() import re # Remove markdown formatting for word count clean = re.sub(r'\*\*.*?\*\*', lambda m: m.group(0).replace('**',''), text) words = clean.split() print(f'Word count (approx): {len(words)}') # Count sentences sentences = re.split(r'[.!?]', text) print(f'Sentence count (approx): {len([s for s in sentences if s.strip()])}') # Check for key sections sections = ['Background', 'Case Presentation', 'Conclusion'] for s in sections: print(f'Has {s}: {s in text}') "
| Item | Status |
|---|---|
| Word count under 250 | PASS (237 words) |
| Title present | PASS |
| Background section | PASS |
| Case Presentation section | PASS |
| Conclusion section | PASS |
| Quantitative data included | PASS |
| Learning point clear | PASS |
| No tables/figures (typical abstract requirement) | PASS |