Skip to content

Commit

Permalink
Add Bitbucket Markdown to docs
Browse files Browse the repository at this point in the history
see issue #20
  • Loading branch information
thomas-dee committed Dec 11, 2018
1 parent 20745cb commit 868310c
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,18 @@ l.layout {
b {text(_("unprotected"))}
input(type:"text",value:"\"!${publicBadge}!\":${jobUrlWithoutView}",class:"select-all")

h3(_("Bitbucket (with view"))
b {text(_("protected"))}
input(type:"text",value:"[Build Status](${badgeUrlWithView}) \"${jobUrlWithView}\")",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"[Build Status](${publicBadge} \"${jobUrlWithView}\")",class:"select-all")

h3(_("Bitbucket (without view"))
b {text(_("protected"))}
input(type:"text",value:"[Build Status](${badgeUrlWithoutView}) \"${jobUrlWithoutView}\")",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"[Build Status](${publicBadge} \"${jobUrlWithoutView}\")",class:"select-all")

h2(_("Embeddable Build Status Text"))
p(raw(_("blurb_text")))

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,41 @@ l.layout {
b {text(_("unprotected"))}
input(type:"text",value:"[[image:${publicBadge}>>${jobUrlWithoutView}||target='__new']]",class:"select-all")

h3(_("RDoc (with view)"))
b {text(_("protected"))}
input(type:"text",value:"{<img src='${badgeUrlWithView}'/>}[${jobUrlWithView}]",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"{<img src='${publicBadge}'/>}[${jobUrlWithView}]",class:"select-all")

h3(_("RDoc (without view)"))
b {text(_("protected"))}
input(type:"text",value:"{<img src='${badgeUrlWithoutView}'/>}[${jobUrlWithoutView}]",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"{<img src='${publicBadge}'/>}[${jobUrlWithoutView}]",class:"select-all")

h3(_("Textile (with view)"))
b {text(_("protected"))}
input(type:"text",value:"\"!${badgeUrlWithView}!\":${jobUrlWithView}",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"\"!${publicBadge}!\":${jobUrlWithView}",class:"select-all")

h3(_("Textile (without view)"))
b {text(_("protected"))}
input(type:"text",value:"\"!${badgeUrlWithoutView}!\":${jobUrlWithoutView}",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"\"!${publicBadge}!\":${jobUrlWithoutView}",class:"select-all")

h3(_("Bitbucket (with view"))
b {text(_("protected"))}
input(type:"text",value:"[Build Status](${badgeUrlWithView}) \"${jobUrlWithView}\")",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"[Build Status](${publicBadge} \"${jobUrlWithView}\")",class:"select-all")

h3(_("Bitbucket (without view"))
b {text(_("protected"))}
input(type:"text",value:"[Build Status](${badgeUrlWithoutView}) \"${jobUrlWithoutView}\")",class:"select-all")
b {text(_("unprotected"))}
input(type:"text",value:"[Build Status](${publicBadge} \"${jobUrlWithoutView}\")",class:"select-all")

h2(_("Embeddable Build Status Text"))
p(raw(_("blurb_text")))
Expand Down

0 comments on commit 868310c

Please sign in to comment.