Create a PDF document from an Azure DevOps Wiki

Azure DevOps Wiki

When working on Azure DevOps or Github, we have special needs when it comes to wiki’s and documentation. Specifically, we often have our documentation sit next to our source code in our repos, allowing us to version our doc…


This content originally appeared on DEV Community and was authored by Marcel.L

Azure DevOps Wiki

When working on Azure DevOps or Github, we have special needs when it comes to wiki's and documentation. Specifically, we often have our documentation sit next to our source code in our repos, allowing us to version our documentation along with our source code. This developer-specific workflow is totally supported by Azure DevOps Wiki. What is great about using the Azure DevOps wiki is that similarly how teams can share and collaborate on a projects source code the same team, using the same workflow can also share and collaborate on a projects documentation through its Wiki. Documentation such as release notes, manuals and any sort of documentation that needs to accompany a project can be created in a Wiki. The documentation is then also kept in source control and in a central place that a team can access and collaborate on.

But this might not be suitable or possible at all times in all use cases, for example to see the DevOps wiki a person must have access to the DevOps Project and Wiki. Say for example someone who is in a different project or in a management role that does not have access to the DevOps project or wiki would like to see a products release notes or maybe some sort of documentation on the project in a document, this makes things a bit more tricky. So today I will share with you how you can convert your DevOps or Github wiki into a PDF document. We will also look at how we can create a pipeline that will automatically generate a new "Wiki PDF" document when required.

DevOps Wiki PDF Export Task

WIKI PDF Export Tasks is a DevOps extension that can be installed into your DevOps Organisation from the Azure DevOps marketplace, simply put it is an Azure Pipelines extension that can give teams another way to present their Wiki as a PDF document, whether it be an export of a whole WIKI or just a single page.

The extension is based on a tool called AzureDevOps.WikiPDFExport by Max Melcher that allows you to export a whole WIKI (or a single file) as a PDF. The tool performs the following tasks:

  • Clone a WIKI Repo
  • Run the command line tool passing in a path to the root of the cloned wiki repo
  • The .order file is read
  • A PDF is generated

Wiki to PDF Pipeline

After installing WIKI PDF Export Tasks in your Devops Organisation. Navigate to your Wiki repository.

In this tutorial I am using a repo on my project called: Devops.Wiki published as my project wiki.

image.png

Under my repo I then created a new folder/path called: .pipelines

image.png

In this path we will create our YAML pipeline called wiki-to-pdf.yml with the following code:

# code/wiki-to-pdf.yml

name: Wiki-To-PDF-$(Rev:rr)
trigger: none

stages:
- stage: wiki_export
  displayName: Wiki Export

  jobs:
  - job: wiki_to_pdf
    displayName: Wiki To PDF
    pool:
      vmImage: windows-latest

    steps:
    - task: richardfennellBM.BM-VSTS-WikiPDFExport-Tasks.WikiPDFExportTask.WikiPdfExportTask@1
      displayName: 'Export a private Azure DevOps WIKI'
      inputs:
        cloneRepo: true
        repo: 'https://dev.azure.com/magiconionM/Devto_Blog_Demos/_git/DevOps.Wiki'
        useAgentToken: true
        localpath: '$(System.DefaultWorkingDirectory)/DevOpsWiki' 
        outputFile: '$(Build.ArtifactStagingDirectory)/PDF/DevOpsWiki.pdf'

    - task: PublishPipelineArtifact@1
      displayName: 'Publish wiki export to Azure Pipeline'
      inputs:
        targetPath: '$(Build.ArtifactStagingDirectory)/PDF'
        artifactName: DevOpsWiki

We can then set up this pipeline and trigger it manually, once the pipeline has completed it will generate an artifact that contains the PDF document.

image.png

image.png

Here is an example PDF export.

Other Examples

Note on our pipeline the task used is specifically to export a private Azure DevOps WIKI:

- task: richardfennellBM.BM-VSTS-WikiPDFExport-Tasks.WikiPDFExportTask.WikiPdfExportTask@1
    displayName: 'Export a private Azure DevOps WIKI'
    inputs:
    cloneRepo: true
    repo: 'https://dev.azure.com/magiconionM/Devto_Blog_Demos/_git/DevOps.Wiki'
    useAgentToken: true
    localpath: '$(System.DefaultWorkingDirectory)/DevOpsWiki' 
    outputFile: '$(Build.ArtifactStagingDirectory)/PDF/DevOpsWiki.pdf'

Here are two more examples. Export a Single File:

- task: richardfennellBM.BM-VSTS-WikiPDFExport-Tasks.WikiPDFExportTask.WikiPdfExportTask@1 
  displayName: 'Export Single File'
  inputs:
    cloneRepo: false
    localpath: '$(System.DefaultWorkingDirectory)'
    singleFile: 'release_notes.md'
    outputFile: '$(Build.ArtifactStagingDirectory)/PDF/ReleaseNotes.pdf'

Export a public GitHub WIKI:

- task: richardfennellBM.BM-VSTS-WikiPDFExport-Tasks.WikiPDFExportTask.WikiPdfExportTask@1
   displayName: 'Export a public GitHub WIKI'
   inputs:
     cloneRepo: true
     repo: 'https://github.com/rfennell/AzurePipelines.wiki.git' 
     useAgentToken: false
     localpath: '$(System.DefaultWorkingDirectory)\GitHubRepo' 
     outputFile: '$(Build.ArtifactStagingDirectory)\PDF\GitHubWiki.pdf'

I hope you have enjoyed this post and have learned something new. You can also find the code samples used in this blog post on my Github page. ❤️

Author

.ltag__user__id__620034 .follow-action-button { background-color: #0cbb58 !important; color: #000000 !important; border-color: #0cbb58 !important; }
pwd9000 image


This content originally appeared on DEV Community and was authored by Marcel.L


Print Share Comment Cite Upload Translate Updates
APA

Marcel.L | Sciencx (2021-09-15T09:20:57+00:00) Create a PDF document from an Azure DevOps Wiki. Retrieved from https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/

MLA
" » Create a PDF document from an Azure DevOps Wiki." Marcel.L | Sciencx - Wednesday September 15, 2021, https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/
HARVARD
Marcel.L | Sciencx Wednesday September 15, 2021 » Create a PDF document from an Azure DevOps Wiki., viewed ,<https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/>
VANCOUVER
Marcel.L | Sciencx - » Create a PDF document from an Azure DevOps Wiki. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/
CHICAGO
" » Create a PDF document from an Azure DevOps Wiki." Marcel.L | Sciencx - Accessed . https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/
IEEE
" » Create a PDF document from an Azure DevOps Wiki." Marcel.L | Sciencx [Online]. Available: https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/. [Accessed: ]
rf:citation
» Create a PDF document from an Azure DevOps Wiki | Marcel.L | Sciencx | https://www.scien.cx/2021/09/15/create-a-pdf-document-from-an-azure-devops-wiki/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.