Skip to main content

Process

How a documentation migration works

A documentation migration runs in seven phases: content audit, information architecture, platform implementation, content migration, author enablement, CI/CD delivery and handoff. This page describes each one — what happens, what we need from you, and what exists when it ends — in enough detail to follow the method whether or not you hire voix to run it.

Seven phases

Run in order. Each one ends in something you can open and inspect.

Standard delivery

Within two business weeks of the deposit and the required materials arriving.

Ownership

On full payment you own the deliverables: the repository, the content and the pipeline.

The sequence

What are the phases of a documentation migration?#phases

A documentation migration has seven phases: audit the existing content, redesign the information architecture, build the open-source platform, convert the content and map the redirects, train the authors, automate the review and publishing pipeline, then hand over ownership. Each phase depends on the one before it, so they run in order rather than in parallel.

  1. 01Content audit and migration mapInventory every existing page with its owner, last meaningful edit and traffic, then mark each one keep, merge, rewrite or retire. The output is a content inventory and a migration map from every current URL to its destination.
  2. 02Information architectureDefine content types and templates, file and URL naming, the navigation model and a controlled vocabulary, then get the top-level structure approved before any content moves.
  3. 03Open-source platform buildStand up Docusaurus in your own repository: a directory tree that mirrors the agreed architecture, theming through design tokens, search, versioning and reusable content blocks, running on a staging URL before content arrives.
  4. 04Conversion, redirects and QAConvert pages to Markdown, rebuild tables, code blocks and images, add front matter, map every old URL to a redirect target, then run link checks and a page-by-page QA pass against the migration map.
  5. 05Author and reviewer trainingRun working sessions where every author branches, writes, previews and merges a real page, and write down the authoring standards, templates and review rubric the team will use after handoff.
  6. 06Review gates and publishing pipelineWire the publishing pipeline: build, link check and terminology check on every pull request, a preview deployment for reviewers, required checks and reviews before merge, automatic publishing on merge and a revert-based rollback.
  7. 07Ownership, governance and handoffRecord named owners per area of the documentation, agree governance for new pages and structural changes, deliver a handoff playbook covering local setup, theming, versions, redirects and deploys, and optionally hold five post-launch interventions in reserve.

The phases map onto the four things voix sells. Consolidation and information architecture covers phases one and two, platform implementation covers three and four, enablement covers five, and CI/CD delivery covers six. The seventh, handoff, is how every engagement closes. The services page describes each service as a piece of work you can buy on its own.

Phase 01 / Content audit and migration map

Count what you have before you move any of it#audit

Nothing gets migrated until every existing page has a row in a spreadsheet and a decision written next to it.

What happens

We pull the current platform into one inventory: one row per page, with its URL, title, section, owner, the date of its last meaningful edit, its traffic if you have analytics, and a decision. The decision is one of four words: keep, merge, rewrite, retire. The export is read as data rather than as a website, so pages that no navigation reaches still show up in the count.

Four things are worth looking for by name:

  • Duplicates. The same procedure written three times, in three tones, giving three different answers.
  • Orphans. Pages nothing links to and no menu reaches, still indexed and still wrong.
  • Stale pages. Screenshots of a screen that shipped two releases ago, endpoints that were deprecated, numbers that changed.
  • Undocumented features. Behaviour that exists in the changelog and in support replies but has no page at all.

Retire is a real option and it is used. A page nobody opens and nobody will own is cheaper to delete and redirect than to carry into a new platform and maintain forever.

What we need from you
  • An export of the current platform, or read access to it.
  • Analytics access if you have it. Six to twelve months of page views changes what is worth keeping.
  • A named owner per product area who can settle a keep-or-cut disagreement in one message.
  • Your top support questions, or access to the ticket queue, so gaps surface now instead of after launch.
What exists at the end
  • A content inventory: one row per page, with owner, decision and destination.
  • A migration map from every current URL to its new path, its merge target, or a redirect.
  • A gap list: the features and questions your documentation does not currently answer.
  • A page count and a complexity read, which is what the quote is scoped against.

Phase 02 / Information architecture

Decide where everything lives, once#architecture

The structure is agreed and signed off before a single page is converted, because moving a page twice costs more than deciding once.

What happens

Documentation is separated into content types, and each type gets a template: concept, task, reference, tutorial, troubleshooting, release note. A task page and a reference page are different shapes, and mixing them is the reason pages grow long and stop being findable.

Then the conventions that keep the structure stable:

  • Naming. One pattern for file names, directory names and page titles, so a new page has an obvious place to go.
  • Navigation. A sidebar organised around what a reader is trying to do, not around which team wrote the page.
  • URLs. A scheme that survives a reorganisation, because every URL you publish is a promise to someone.
  • Controlled vocabulary. One agreed word per concept and a list of the synonyms you are retiring. Search fails when one feature has three names.

Versioning boundaries are decided here too: whether readers need older versions at all, which version is the default, and how far back support goes.

What we need from you
  • Two hours with someone who knows the product taxonomy well enough to argue about it.
  • A final decision on product and feature naming, including the names you are dropping.
  • Approval of the top-level navigation. This is the one sign-off that blocks the build.
  • A view on versioning: who still reads the previous version, and why.
What exists at the end
  • An approved navigation tree, specified down to the second level.
  • A template per content type, listing the sections each type must contain.
  • Naming and URL conventions, written down rather than remembered.
  • A terminology list: preferred term, retired synonyms, and how each one is capitalised.

Phase 03 / Open-source platform build

Build the platform inside a repository you own#implementation

Docusaurus, in your Git repository, on your hosting, at your domain, standing up before any content lands in it.

What happens

The platform is Docusaurus: Markdown and MDX in Git, built to static files. The repository is yours from the first commit rather than transferred at the end, so there is never a moment where the work lives somewhere you cannot reach.

  • Repository structure. A docs tree that mirrors the approved navigation, so the file path and the published URL are the same thought.
  • Theming. Your brand applied through CSS custom properties and component slots instead of a fork, which keeps a Docusaurus upgrade an ordinary pull request.
  • Search. Configured and tested against your real titles and headings, because most of what people call a search problem is a structure problem.
  • Versioning. A current version that is writable and older versions frozen, or no versioning at all when the product does not need it.
  • Reusable blocks. Admonitions, tabbed code samples and shared snippets, so a value that changes gets changed in one file.

Nothing in the stack is proprietary and nothing is licensed per seat. Every dependency is open source and every configuration file sits in the repository you own. The migration handbook walks through how the pieces fit together if you want to build it yourself.

What we need from you
  • A repository, and a decision on where the site is built and hosted.
  • The domain or subdomain, and someone who can change DNS records.
  • Brand assets: logo files, colour values, and web fonts you are licensed to use.
  • A decision on whether the documentation is public or sits behind authentication.
What exists at the end
  • A running site on a staging URL, built from your repository by your pipeline.
  • Navigation, search, theming and versioning working, with content still to come.
  • A local development setup your engineers can run themselves, documented in the repository.
  • A dependency list with no proprietary platform in it.

Phase 04 / Conversion, redirects and QA

Convert the content and keep every old link working#migration

The pages move, the vendor markup does not, and every URL you have ever published still resolves to something useful.

What happens

Pages become Markdown or MDX. Wrapper markup, inline styles and editor artefacts are dropped rather than translated. Tables and code blocks are rebuilt as real tables and real code blocks. Images are re-exported, renamed to match the page they belong to and referenced by relative path. Front matter is added to every file: title, description, sidebar position, slug.

Then the part that decides whether your readers ever notice the migration happened:

  • Redirects. Every old URL maps to its new page or to the nearest genuinely useful parent. Nothing gets redirected to the home page.
  • Internal links. Rewritten as relative paths so the build itself can verify them.
  • Link checking. A broken internal link or a broken anchor fails the build, which means it cannot reach production quietly.
  • QA. Every page opened, every code sample rendered, every image loaded, every sidebar entry checked back against the migration map.

Bookmarks, inbound links from other sites and search results all still point at the old URLs. Redirects are the only thing keeping those people from a 404, which is why this phase is not left until last.

What we need from you
  • Sign-off on the keep, merge and retire decisions from the audit.
  • A redirect owner: someone who can apply rules where they actually take effect, whether that is the CDN, the old platform or the new host.
  • Subject-matter review for the pages marked rewrite and for anything the gap list added.
  • A decision on the old platform: switched to read-only, or kept live until the redirect window closes.
What exists at the end
  • Your content in Git, in Markdown, in the structure you approved.
  • A redirect map, applied and tested against the full list of old URLs.
  • A build that passes internal link and anchor checks.
  • A QA log recording what was checked, what was fixed and what was deliberately left out of scope.

Phase 05 / Author and reviewer training

Train the people who will write the next page#enablement

A migration only voix can maintain has not finished. Authors publish a real page during training, not a practice one.

What happens

Training is a working session rather than a lecture. Each author brings a page that genuinely needs writing and, during the session, creates a branch, writes it in Markdown, previews the rendered result, opens a pull request, takes a review and merges it. The first pull request is the one people remember, so it happens with someone in the room.

  • Authoring standards. Voice, sentence case, when to use each content type, how to name a file, how a page joins the sidebar, how screenshots are taken and stored.
  • A review rubric, so review is about accuracy, structure and terminology instead of commas.
  • Publishing guidelines. What needs review, what needs product sign-off, and what an author can merge alone.
  • Escalation. Who decides when a page does not fit any template.

Writers who have never touched Git get the same session. The workflow is taught through the browser editor first and the command line only for the people who want it.

What we need from you
  • A list of authors and reviewers, with repository access granted before the session rather than during it.
  • Ninety uninterrupted minutes of their calendar.
  • One reviewer per team who agrees to be the first point of review.
  • A real page per author that needs writing anyway.
What exists at the end
  • Authors who have each merged at least one page under their own name.
  • A contributing guide in the repository, next to the content it describes.
  • A copy-ready template for every content type.
  • A review checklist your reviewers have actually agreed to.

Phase 06 / Review gates and publishing pipeline

Automate the checks so review can be about the content#ci-cd

Every pull request builds the site, checks the links and produces a preview URL. Merging publishes. Rolling back is a revert.

What happens

The pipeline runs in whatever CI your engineering team already uses. Documentation gets the same delivery discipline as code because it now lives in the same place as code.

  • On every pull request. The site builds, internal links and anchors are checked, and the terminology list from the architecture phase is enforced.
  • Preview deployments. Reviewers read the rendered page instead of the diff, which is the difference between a review and an approval.
  • Branch protection. Required checks and required review before anything reaches the default branch.
  • On merge. The site builds and publishes itself. Nobody copies files onto a server.
  • Rollback. A revert. The previous state of the documentation is always one commit away.

This is the phase that stops the other six decaying. Once publishing is a merge, updating the documentation stops being a project. CI/CD documentation delivery can also be bought on its own if your content is already in Git.

What we need from you
  • Permissions on the repository and its CI, including the ability to set branch protection.
  • A decision on who can approve and who can merge.
  • Deploy tokens and any search API keys, placed in the repository secret store by someone authorised to hold them.
  • Agreement from engineering on where documentation builds run, so the pipeline is not a surprise to them.
What exists at the end
  • Required, passing checks on every pull request.
  • A preview URL attached to every pull request.
  • Publishing on merge, with a documented rollback.
  • The pipeline definition in your repository, readable and editable by your own team.

Phase 07 / Ownership, governance and handoff

Hand over ownership, and mean it#handoff

The engagement ends with named owners, a written governance model and a playbook covering everything you would otherwise have to email us about.

What happens

Ownership is recorded in the repository, per area of the documentation tree, so a pull request reaches the person able to judge it. Governance answers the questions that get argued about six months later: how a new page is proposed, who approves a change to the navigation, when the terminology list is updated, and how often each section is reviewed for staleness.

The handoff playbook is written for the person who joins your team next year:

  • How to run the site locally and where every configuration file lives.
  • How to add a page, a section, or a whole new version.
  • How to change theming without forking the theme.
  • How to add a redirect and how to prove it works.
  • How to read a failed build and how to roll a deployment back.

The five interventions package is optional and costs a small extra amount on top of the project fee. It covers five post-launch maintenance interventions for fixes and minor updates, which is worth having in the first months when the awkward questions are still arriving. It is described in full on the pricing page.

What we need from you
  • Named owners per documentation area, with the authority that implies.
  • A decision on the optional five interventions package.
  • A date for the handoff walkthrough, with those owners actually in the room.
  • Confirmation that your team can build, preview and deploy the site without us on the call.
What exists at the end
  • A documentation platform running in your repository, under your ownership.
  • A governance model with named owners and a review cadence.
  • A handoff playbook, checked into the repository next to the site it describes.
  • Five post-launch interventions held in reserve, if you took the package.

Two commercial facts belong in this phase. On full payment you own the final deliverables, while voix keeps the rights to its own pre-existing tools, templates and know-how. voix also retains a copy of the initial delivered project for one year, after which the project lives on your Git account or your own hosting.

Your side of the work

What we need from you#what-we-need-from-you

Delivery is measured from the day the deposit and the required materials arrive, so this checklist is the part of the timeline you control completely. Most of it can be gathered before the proposal is even signed.

Access

  • An export of the current platform, or read access to it.
  • A Git repository, and CI permissions including branch protection.
  • DNS access for the domain or subdomain the documentation will live at.
  • Analytics, if you have it.
  • The support ticket queue, or a list of the questions it keeps answering.

Decisions

  • Final product and feature naming, including the names you are retiring.
  • Approval of the top-level navigation.
  • Sign-off on the keep, merge and retire list from the audit.
  • Public documentation or authenticated documentation.
  • Who can approve a documentation change, and who can merge it.

People and time

  • A named owner per product area who can settle a disagreement.
  • Two hours for the information architecture session.
  • Ninety minutes for the author and reviewer training.
  • A subject-matter reviewer for pages marked rewrite.
  • Authors and reviewers with repository access granted in advance.

Materials

  • Logo files, colour values and licensed web fonts.
  • Anything living outside the platform: internal wikis, PDFs, support macros, README files, shared documents.
  • API specifications or generated reference output, if the docs include reference material.
  • Anything under NDA flagged as such before it is sent.

Everything you send is used only to deliver the work, and access is limited to the people who need it. Nothing about your project is published or named without your written consent. The confidentiality policy sets that out in full.

Timing

How long does a documentation migration take?#how-long-does-a-documentation-migration-take

Standard delivery is within two business weeks, measured from the day the deposit and the required materials arrive — not from the first conversation, and not from the day the proposal is signed.

When the clock starts
The two business weeks begin once the 50% deposit is received and the materials in the checklist above are in our hands. Work always runs under a written proposal or statement of work that fixes scope, timeline and fees before anything begins.
What that covers
A scoped migration: the seven phases above, applied to the volume of content the proposal names. The remaining 50% is due on delivery.
What is scoped separately
Larger consolidations are scoped individually. Several platforms merging into one, multiple products or maintained versions, or a volume of content nobody could review inside two weeks all get their own timeline written into the proposal. We would rather quote a longer timeline than miss a short one.
What moves the date
  • Access that has not been granted yet: repository, CI, DNS, analytics.
  • Navigation approval waiting on a decision maker who was never brought into the loop.
  • Subject-matter review of rewritten pages queued behind a product release.
  • Out-of-scope requests, which need written approval before they are picked up.
What it does not depend on
Platform licences, vendor support tickets and export windows. The stack is open source, so no part of the timeline is spent waiting for permission from a supplier.

Start with the audit

Tell us what platform you are on, roughly how many pages it holds and who owns them. You get back a scope, a phase plan and a quote.