Skip to content

Instantly share code, notes, and snippets.

View frpaulas's full-sized avatar

Paul Sutcliffe frpaulas

View GitHub Profile
{
"version": "2.0.1",
"summary": "Fast markdown parsing and rendering",
"repository": "https://github.com/evancz/elm-markdown.git",
"license": "BSD3",
"source-directories": [
"src"
],
"exposed-modules": [
"Markdown"
module Saints where
import Http
import Html exposing (Html)
import Task exposing (Task, andThen, toResult)
import Json.Decode as Json exposing ((:=))
-- queries postgres for authentication token
-- displays token
-- successful query comes back with 201 status and body {"token": "longSecretToken"}
module NoteSaver where
import Html exposing (..)
import Html.Attributes exposing (class)
import StartApp
import Effects
app =
StartApp.start
{ init = (initialModel)