Skip to content

Commit

Permalink
small fixes; demo website icon and meta tags
Browse files Browse the repository at this point in the history
  • Loading branch information
bgadrian committed Nov 19, 2017
1 parent 388aff4 commit 6484783
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
@@ -1,6 +1,6 @@
# Emoji-compress

**Emoji-compress** is an open-source library, written in Go, as a side-project. We have ported to Go some known basic encoding and compression algorithms and added the emoji twist. Some of the methods may result in smaller texts (as in the number of characters), but larger in bytes.
**Emoji-compress** is an open-source library, written in Go, as a side-project. We have ported a few known basic encoding and compression algorithms and added the emoji twist. Some of the methods may result in smaller texts (as in the number of characters), but larger in bytes.

All packages have unit tests and GoDocumentation. The project also contains a demo web server and website, which aren't supposed to be uses in a (serious, non-emojified) production env.

Expand Down
9 changes: 9 additions & 0 deletions docs/_includes/head.html
Expand Up @@ -3,9 +3,18 @@
<title>Emoji compress</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<meta name='description' content="Encode any text to a series of emoji.">
<link rel="stylesheet" href="{{ site.baseurl }}/css/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="{{ site.baseurl }}/css/cayman.css">
<link rel="stylesheet" href="{{ site.baseurl }}/css/custom.css">
<link rel='fluid-icon' type='image/png' href='/big-icon.png'>
<script src="{{ site.baseurl }}/js/main.js"></script>

<meta property="og:title" content="Emoji compress" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://emoji-compress.com/" />
<meta property="og:image" content="https://emoji-compress.com/big-icon.png" />
<meta property="twitter:image" content="https://emoji-compress.com/big-icon.png" />
<meta property="og:description" content="Encode any text to a series of emoji." />
</head>
Binary file added docs/big-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion docs/index.html
Expand Up @@ -3,7 +3,11 @@
---

<div id="home">

<div>
<strong>Emoji-compress</strong> is an open-source library, written in Go, as a side-project.
We have ported a few known basic encoding and compression algorithms and added the emoji twist. Some of the methods may result in smaller texts (as in the number of characters), but larger in bytes.
</div>
<hr>
<div>
<h1><a href="https://github.com/bgadrian/emoji-compress/tree/master/lz78">LZ78 - compression</a></h1>
<p><a href="https://en.wikipedia.org/wiki/LZ77_and_LZ78" target="_blank">LZ78</a>
Expand Down

0 comments on commit 6484783

Please sign in to comment.