Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way transfer pages from "Confluence" to "Azure Devops Wiki"

I have looked into the documentation for Azure DevOps Wiki, but I wasnt able to find a way where you can export pages from Confluence and migrate it or import it to Azure DevOps. Any suggestions would be appreciated.

like image 892
Madhura Avatar asked May 08 '20 11:05

Madhura


2 Answers

Is there a way transfer pages from “Confluence” to “Azure Devops Wiki”

I am afraid that there is no such way could import the file exported from Confluence into Azure Devops Wiki.

According to this doc about exporting the Content in Confluence , the content could be exported as PDF, Word, Html, Xml format.

But these formats couldn't directly show content on Azure Devops Wiki Page.

This is an under review feature request.

If this feature is launched, it seems that your requirements could be met.

You could vote and add comments in it.

Hope this helps.

like image 117
Kevin Lu-MSFT Avatar answered Sep 18 '22 13:09

Kevin Lu-MSFT


Confluence provides a rich RESTful API with which you could iterate your Spaces and Pages, extract all needed details and then format/write them appropriate to Azure DevOps Wiki (.md files). This is non-trivial but I've done something similar using PowerShell and the Confluence RESTful APIs.

like image 33
ScottWelker Avatar answered Sep 21 '22 13:09

ScottWelker