├── .gitignore ├── README.md ├── config └── config.exs ├── lib ├── mix │ └── tasks │ │ └── slack.html.ex └── slack_to_html.ex ├── mix.exs ├── mix.lock ├── static └── style.css ├── templates ├── 404.html.eex ├── channel_index.html.eex ├── channel_messages.html.eex ├── index.html.eex └── layout.html.eex └── test ├── slack_to_html_test.exs └── test_helper.exs /.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /cover 3 | /deps 4 | erl_crash.dump 5 | *.ez 6 | 7 | /output 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/README.md -------------------------------------------------------------------------------- /config/config.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/config/config.exs -------------------------------------------------------------------------------- /lib/mix/tasks/slack.html.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/lib/mix/tasks/slack.html.ex -------------------------------------------------------------------------------- /lib/slack_to_html.ex: -------------------------------------------------------------------------------- 1 | defmodule SlackToHTML do 2 | end 3 | -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/mix.lock -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/404.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/templates/404.html.eex -------------------------------------------------------------------------------- /templates/channel_index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/templates/channel_index.html.eex -------------------------------------------------------------------------------- /templates/channel_messages.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/templates/channel_messages.html.eex -------------------------------------------------------------------------------- /templates/index.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/templates/index.html.eex -------------------------------------------------------------------------------- /templates/layout.html.eex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/templates/layout.html.eex -------------------------------------------------------------------------------- /test/slack_to_html_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevedomin/slack_to_html/HEAD/test/slack_to_html_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------