├── .dir-locals.el ├── Makefile ├── README.md ├── elm-package.json ├── src ├── App.elm ├── Document.elm ├── Markov.elm ├── Native │ └── Document.js ├── Rest.elm ├── State.elm ├── Types.elm └── View.elm ├── static ├── bootstrap.min.css ├── favicon.ico ├── index.html ├── interop.js ├── less-2.5.0.min.js ├── loading_wheel.gif └── style.less └── vendor └── bootstrap-3.3.1 ├── css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map └── bootstrap.min.css ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf └── glyphicons-halflings-regular.woff └── js ├── bootstrap.js ├── bootstrap.min.js └── npm.js /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/README.md -------------------------------------------------------------------------------- /elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/elm-package.json -------------------------------------------------------------------------------- /src/App.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/App.elm -------------------------------------------------------------------------------- /src/Document.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/Document.elm -------------------------------------------------------------------------------- /src/Markov.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/Markov.elm -------------------------------------------------------------------------------- /src/Native/Document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/Native/Document.js -------------------------------------------------------------------------------- /src/Rest.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/Rest.elm -------------------------------------------------------------------------------- /src/State.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/State.elm -------------------------------------------------------------------------------- /src/Types.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/Types.elm -------------------------------------------------------------------------------- /src/View.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/src/View.elm -------------------------------------------------------------------------------- /static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/bootstrap.min.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/index.html -------------------------------------------------------------------------------- /static/interop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/interop.js -------------------------------------------------------------------------------- /static/less-2.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/less-2.5.0.min.js -------------------------------------------------------------------------------- /static/loading_wheel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/loading_wheel.gif -------------------------------------------------------------------------------- /static/style.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/static/style.less -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap-theme.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/js/bootstrap.js -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /vendor/bootstrap-3.3.1/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krisajenkins/autoheadline/HEAD/vendor/bootstrap-3.3.1/js/npm.js --------------------------------------------------------------------------------