This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module NoteSaver where | |
import Html exposing (..) | |
import Html.Attributes exposing (class) | |
import StartApp | |
import Effects | |
app = | |
StartApp.start | |
{ init = (initialModel) |
NewerOlder