Adding custom style to a Wiki page using MarkDown in Gitlab
Asked Answered
A

1

8

I’m trying to reproduce this example https://about.gitlab.com/handbook/product/technical-writing/markdown-guide/#styles 95

I’m writing this block in the content of the page

<style>
.purple {
  color:inherit;
}

.purple:hover {
  color:rgb(107,79,187);
}
</style>

Hey! Hover the cursor over me and guess what?

{: .purple}

But when I go to the content preview it doesn’t work.

What I’m doing wrong?

Thank you.

Anthracosis answered 23/4, 2020 at 1:53 Comment(1)
forum.gitlab.com/t/… may be useful.Devonian
C
2

The page that you linked to is about how markdown works for GitLab's handbook which is built using a Static Site Generator that will interpret those style tags.

For any markdown styling within the GitLab product, including the wiki, you want to refer to the GitLab Flavored Markdown documentation.

Cayuse answered 6/2, 2022 at 21:2 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.