render

in _plugins/githubauthor_tag.rb [7:22]


    def render(context)
      
      input_split = split_params(@input)
      author = input_split[0].strip

      <<~GITHUBAUTHORBLOCK
      <div class="github-contributor">
        <img class="github-avatar" src="https://avatars.githubusercontent.com/#{author}?s=60&v=4"/>
        <span>
          <a href="http://github.com/#{author}">@
        </span>
      </div>
      GITHUBAUTHORBLOCK

    end