module Markdown

Public Class Methods

center(text) click to toggle source
# File lib/jekyll-git-authors/markdown.rb, line 6
def self.center(text)
  '{:center: style="text-align: center"}' + "\n#{text}\n{:center}"
end
mailto(a, e) click to toggle source
# File lib/jekyll-git-authors/markdown.rb, line 2
def self.mailto(a, e)
  "[#{a}](mailto:{{ '#{e}' | encode_email }})"
end