vinyll / anywhere

Edit on Github, read anywhere on your HTML webpage.

Home Page:http://vinyll.github.io/anywhere/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Anywhere JS

Makes your HTML content easily editable from Github in Markdown.

How does it work?

  1. Edit a file on your Github called my-content.md
  2. Set the attribute data-anywhere="my-content" on a tag in your HTML page

Your tag content will be replaced with the one from my-content.md and interpreted in HTML! Crazy huh!

View demo

Quickstart

Add this before your closing </head>:

<script src="https://cdn.rawgit.com/vinyll/anywhere/master/dist/anywhere.js"></script>
<script>Anywhere.config.default = {user: "vinyll", repo: "anywhere"};</script>

Now use it adding the data-anywhere attribute telling the file to read from:

<div data-anywhere="README"></div>

This will retrieve the README.md file from the Github repo and replace the <p> tag content.

Configuration

For a github user vinyll, pointing to a anywhere repo on the branch mybranch, here's a sample config:

<script>
    Anywhere.config.default = {
      user: "vinyll",  // your github username
      repo: "anywhere",  // your github repository
      branch: "mybranch"  // the branch where the file is. Default is _master_
    }
</script>

The example below will therefore get the markdown content from https://github.com/vinyll/anywhere/blob/master/README.md, convert it into HTML and render it into some tag.

See the demo to see it in action or the demo code to view how it works.

The inclusion script <script src="https://cdn.rawgit.com/vinyll/anywhere/master/dist/anywhere.js"></script> refers to the bleeding edge version of Anywhere. To use a stable version you should call it with the version you want to use. For example <script src="https://cdn.rawgit.com/vinyll/anywhere/0.3/dist/anywhere.js"></script> to refer to version 0.3. A list of versions is available on the github releases list.

Events

Getting informed when ready

Any DOM node with data-anywhere attribute will dispatch an update event when ready.

var mydiv = document.querySelector('#mydiv');
mydiv.addEventListener('update', function(e) {
  console.log('mydiv content was updated! new content:', e.detail);
}

You can therefore be informed whenever the content has been updated.

Change the DOM on the run

the update() event is available on all the DOM nodes where you apply data-anywhere attribute.

Therefore you can force-update a refresh on the node to reload its content:

var mydiv = document.querySelector('#mydiv');
mydiv.attributes['data-anywhere'].value = 'other-github-file';
mydiv.update();

This will load other-github-file from Github and update mydiv with the content retrieved.

Markdown conversion

'Anywhere' uses marked to convert Github's Markdown to HTML.

Inline / block types

Note that when you use data-anywhere attribute on a inline tag (such as <span>, <em>) or if you forced that tag to display: inline, the Markdown content rendered will not have the <p> wrapper. Therefore the HTML will not break and you can css-style properly.

Usage

With this lib you can use Github as a content editor with git powers and Github benefits. You could also use it as your CMS. Please let me know your usage.

Sources

JavaScipt ES6 is the original language version. You may find the file in /src/anywhere.js.

Transpilation

To compile, install babeljs and run:

babel src/anywhere.js --blacklist strict -o dist/anywhere.js

You can add the --watch option if you're actively developping.

I chose to remove the "use strict"; option on top of the file as it would be on the global scope of the file and could therefore impact other JS files. If you have a better solution please file a bug.

Contribute

Many ways to contribute:

  • submit an issue when you find a bug
  • suggest new ideas
  • fork this repo and implement your features
  • improve the code or demo
  • find typos
  • letting me know how you use it

License

MIT. Refer to the license.txt file.

About

Edit on Github, read anywhere on your HTML webpage.

http://vinyll.github.io/anywhere/

License:MIT License


Languages

Language:JavaScript 100.0%