diff options
author | Markus Koller <mkoller@gitlab.com> | 2019-07-02 17:48:28 +0200 |
---|---|---|
committer | Markus Koller <mkoller@gitlab.com> | 2019-07-02 17:48:49 +0200 |
commit | 4fedc3426e162960f61b6f8c1c947b2e7880d78a (patch) | |
tree | 01c9093613043e3b09d1027a3938808af15cff37 /doc/development | |
parent | c5e9428536afb75c29a738f525c412caf9412d08 (diff) | |
download | gitlab-ce-docs-centralize-markdownlint-config.tar.gz |
Fix Markdown errorsdocs-centralize-markdownlint-config
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/documentation/styleguide.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/development/documentation/styleguide.md b/doc/development/documentation/styleguide.md index 6bfedcb1047..94a9641a326 100644 --- a/doc/development/documentation/styleguide.md +++ b/doc/development/documentation/styleguide.md @@ -518,7 +518,7 @@ you have your MR reviewed and approved by a technical writer. ```html leave a blank line here <div class="video-fallback"> - See the video: [Video title](https://www.youtube.com/watch?v=MqL6BMOySIQ). + See the video: <a href="https://www.youtube.com/watch?v=MqL6BMOySIQ">Video title</a>. </div> <figure class="video-container"> <iframe src="https://www.youtube.com/embed/MqL6BMOySIQ" frameborder="0" allowfullscreen="true"> </iframe> @@ -529,7 +529,7 @@ leave a blank line here This is how it renders on docs.gitlab.com: <div class="video-fallback"> - See the video: [What is GitLab](https://www.youtube.com/watch?v=enMumwvLAug). + See the video: <a href="https://www.youtube.com/watch?v=enMumwvLAug">What is GitLab</a>. </div> <figure class="video-container"> <iframe src="https://www.youtube.com/embed/MqL6BMOySIQ" frameborder="0" allowfullscreen="true"> </iframe> |