How to add Mark Down styles to the Azure DevOps website
Asked Answered
C

1

6

I'm trying to add the ability to see Mark Down styles in the Azure DevOps website or somehow inject the CSS,

For example: when navigating to Repos I have README.md which I want to look like the Microsoft standard MD documentations, [!TIP], [!WARNING], and other styles don't seem to be supported out of the box.

Any suggestions? maybe even creating a plugin for Azure DevOps website (how do I do that?)

Here's an example of how I want it to look like:

enter image description here

Conyers answered 19/6, 2020 at 6:53 Comment(3)
learn.microsoft.com/en-us/azure/devops/project/wiki/…Schipperke
Hi @Schipperke - if you scroll down at the URL you just sent, you can see Microsoft is having a "Note" which they also use in the Mark Down, but it looks like this tag like "Tip" and "Warning" is using some custom style.Conyers
Also, I'm using Docs Authoring Pack in VS Code, which seems to offer valid Mark Down tags.Conyers
K
5

You may try the following styles:

**WARNING**: 
Be careful!

enter image description here

### Warning: 
Be careful!

enter image description here

> **WARNING**: Be careful

enter image description here

> :warning: **Be careful!**

enter image description here

| WARNING: Be careful! |
| --- |

enter image description here

Kinsler answered 22/6, 2020 at 2:54 Comment(2)
Hi, thank you for the response, this is helpful but does not fully answer my question, I like the :warning: and I wonder if there are more icons available, but my goal is to have my ReadMe.MD files in each Azure DevOps Repo look exactly like Microsoft articles.Conyers
You can check the supported emoji here: webfx.com/tools/emoji-cheat-sheet.Kinsler

© 2022 - 2024 — McMap. All rights reserved.