S.Castro
S.Castro

Reputation: 35

Github Markdown : Is it possible to put links under emojis?

A picture of my attempt here:

A picture of my attempt here

I know I can put links within images. But what about emojis. For example, can πŸ”— emoji be used as a link?

Thank you

Upvotes: 1

Views: 1643

Answers (2)

heniczyna
heniczyna

Reputation: 327

Provided above syntax is totally fine, at least in GitHub's README.md.

I just wanted to add 2 more cents:

  • syntax for www: [:memo:](https://www.google.com/) or just copy/paste an emoji icon [πŸ“](https://www.google.com/)
  • syntax for email: [:black_nib:](mailto:[email protected]) or just copy/paste an emoji icon [βœ’οΈ](mailto:[email protected])

Upvotes: 0

Adil B
Adil B

Reputation: 16806

Try this syntax:

[:smile:](http://github.com)

Result:

Result

Upvotes: 3

Related Questions