AI Cross-Platform Content Adaptor
An AI Cross-Platform Content Adaptor specializes in transforming, localizing, and optimizing content across diverse digital channe…
Skill Guide
The mastery of lightweight markup syntax (Markdown), semantic document structuring (HTML), and adherence to the specific content formatting rules of digital platforms (e.g., GitHub, Atlassian, Slack) to create clear, consistent, and platform-optimized technical documentation and communication.
`, `
`, and ``. Focus on *meaning* over visual presentation. 3. **Platform Paradox:** Learn that `#` means a header in a README.md, but is a hyperlink anchor in a Jira description. Identify the 3-5 platforms your team uses daily.Scenario
You have a simple Python script on GitHub. You need to create a README that is clear on GitHub, but also looks good when the raw Markdown is pasted into a Jira ticket or Slack message.
Scenario
Your team's internal API documentation is scattered across Google Docs and random wiki pages. You need to consolidate it into a single, searchable, version-controlled site.
Scenario
As a Tech Lead, you notice documentation quality is inconsistent. You want to enforce style and structural rules on all Markdown and HTML content in the repository automatically.
Use **markdownlint** and **Prettier** in local editors and CI/CD for automated formatting and style enforcement. Use **Docusaurus** or **MkDocs** for building structured, multi-page documentation sites from Markdown files. Always reference the platform's official spec (GFM, Atlassian) for edge-case syntax.
Apply the **Diátaxis** framework (tutorials, how-tos, reference, explanation) to structure your documentation types logically. Adopt **Content-as-Code** by treating all documentation with the same rigor as source code (version control, review, automated testing). Use **Semantic HTML** to ensure content is accessible and machine-readable, even when you're writing in Markdown.
Answer Strategy
The interviewer is testing for practical, platform-aware quality standards. Strategy: Demonstrate a systematic checklist and specific, actionable feedback. **Sample Answer:** 'First, I'd check the render in Jira's preview. Then, I'd verify: 1) All code samples are in fenced code blocks (triple backticks) for syntax highlighting, not indented spaces. 2) Nested lists use consistent indentation (2 or 4 spaces) and are parseable. 3) Hyperlinks are valid and use absolute URLs, not relative paths. My feedback would be: "The render looks good, but let's fix the code blocks to use ``` for proper highlighting in Jira. Also, change the relative link `/api/auth` to the full `https://...` to ensure it works from the ticket context."'
Answer Strategy
Testing strategic decision-making based on audience, maintenance, and workflow. Strategy: Frame the answer around the **Content-as-Code** paradigm and user workflow. **Sample Answer:** 'For a critical runbook, **version control and auditability are paramount**. I would use **Markdown in a Git repo**. The trade-off is a slightly higher barrier to edit for non-technical stakeholders, but the gain is a single source of truth, a full history of changes via `git log`, and the ability to include runbook updates in the same PR as infrastructure-as-code changes. I would *not* use a Confluence wiki for this because it exists outside the deployment pipeline and lacks granular version control. HTML in a portal is a read-only rendering target, not a authoring format.'
1 career found
Try a different search term.