mirror of https://github.com/vacp2p/rfc.git
added
This commit is contained in:
parent
41c4ecceab
commit
710372bc97
|
@ -0,0 +1,13 @@
|
|||
{%- assign authors=include.authors|split:"," -%}
|
||||
{%- for author in authors -%}
|
||||
{%- if author contains "<" -%}
|
||||
{%- assign authorparts=author|split:"<" -%}
|
||||
<a href="mailto:{{authorparts[1]|remove:">"}}">{{authorparts[0]|strip}}</a>
|
||||
{%- elsif author contains "(@" -%}
|
||||
{%- assign authorparts=author|split:"(@" -%}
|
||||
<a href="https://github.com/{{authorparts[1]|remove:")"}}">{{authorparts[0]|strip}}</a>
|
||||
{%- else -%}
|
||||
{{author}}
|
||||
{%- endif -%}
|
||||
{% if forloop.last == false %}, {% endif %}
|
||||
{%- endfor -%}
|
Loading…
Reference in New Issue