Skip to content
Snippets Groups Projects
Commit 80d24252 authored by Marcia Ramos's avatar Marcia Ramos
Browse files

add markdown kramdown support for all "description" entries 😄

parent 40f82398
No related branches found
No related tags found
2 merge requests!6084Add markdown support to YAML entries,!5551GitLab 9.2 release post
Pipeline #
Loading
Loading
@@ -73,8 +73,7 @@
%a{href: "/mvp/"} MVP
is
= link_to(mvp.fullname, "https://gitlab.com/#{mvp.gitlab}")
%p
= mvp.description
= markdown(mvp.description)
 
/ top feature
%section#top-feature.release-post-section
Loading
Loading
@@ -96,8 +95,7 @@
%a{title: "GitLab Enterprise Edition Premium"}
%span{class: "#{available_in}"}
= "#{available_in}"
%p
= top_feature.description
= markdown(top_feature.description)
%i.fa.fa-book
%a{href: "#{top_feature.documentation_link}", target: "_blank"}
- if top_feature.documentation_text
Loading
Loading
@@ -130,8 +128,7 @@
%a{title: "GitLab Enterprise Edition Premium"}
%span{class: "#{available_in}"}
= "#{available_in}"
%p
= primary_feature.description
= markdown(primary_feature.description)
- if primary_feature.documentation_link != nil
%i.fa.fa-book
%a{href: "#{primary_feature.documentation_link}", target: "_blank"}
Loading
Loading
@@ -166,8 +163,7 @@
%a{title: "GitLab Enterprise Edition Premium"}
%span{class: "#{available_in}"}
= "#{available_in}"
%p
= primary_feature.description
= markdown(primary_feature.description)
- if primary_feature.documentation_link != nil
%i.fa.fa-book
%a{href: "#{primary_feature.documentation_link}", target: "_blank"}
Loading
Loading
@@ -209,8 +205,7 @@
%a{title: "GitLab Enterprise Edition Premium"}
%span{class: "#{available_in}"}
= "#{available_in}"
%p
= secondary_feature.description
= markdown(secondary_feature.description)
- if secondary_feature.image_url != nil
- if secondary_feature.image_noshadow == true
%img{:src => "#{secondary_feature.image_url}", :alt => "#{secondary_feature.name}"}/
Loading
Loading
@@ -245,8 +240,7 @@
%a{title: "GitLab Enterprise Edition Premium"}
%span{class: "#{available_in}"}
= "#{available_in}"
%p
= secondary_feature.description
= markdown(secondary_feature.description)
- if secondary_feature.image_url != nil
%p
- if secondary_feature.image_noshadow == true
Loading
Loading
@@ -273,8 +267,7 @@
%h3{:id => "#{deprecation.feature_name.downcase.tr(" ", "-")}"}
%a.header-link{href: "##{deprecation.feature_name.downcase.tr(" ", "-")}"}
= deprecation.feature_name
%p
= deprecation.description
= markdown(deprecation.description)
%p
Due:
%strong= "#{deprecation.due}"
Loading
Loading
@@ -285,8 +278,7 @@
%h2.text-center{:id => "barometer"}
%a.header-link{href: "#barometer"}
Upgrade barometer
%p
= barometer.description
= markdown(barometer.description)
 
/last section
%section#about-gitlab.gray-section
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment