Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tra38
Last active June 14, 2020 15:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tra38/744eb65032ecddc4c06c3e71bdfb498a to your computer and use it in GitHub Desktop.
Save tra38/744eb65032ecddc4c06c3e71bdfb498a to your computer and use it in GitHub Desktop.
Standards Document For "Story Compiler"

Quote, Unmodified From Original

Input JSON:

{
    "quote": "We’re changing the way people share around the world with our
               Global Community and 1.4 billion pieces of content under our
               simple, easy-to-use open licenses.",
    "source": "https://creativecommons.org",
    "license": "CC-BY",
    "license_url": "https://creativecommons.org/licenses/by/4.0/",
}

Output Markdown:

We’re changing the way people share around the world with our Global Community and 1.4 billion
pieces of content under our simple, easy-to-use open licenses.

- "We’re changing the ... easy-to-use open licenses." is from
 https://creativecommons.org ([CC-BY](https://creativecommons.org/licenses/by/4.0/)).

Quote, Modified From Original

Input JSON:

{
    "quote": "We’re changing the way people share around the world!",
    "original_quote": "We’re changing the way people share around the world with 
    our Global Community and 1.4 billion pieces of content under our
    simple, easy-to-use open licenses.",
    "source": "https://creativecommons.org",
    "license": "CC-BY",
    "license_url": "https://creativecommons.org/licenses/by/4.0/",
}

Output Markdown:

We’re changing the way people share around the world!

- "We’re changing the ... around the world!" is from
https://creativecommons.org ([CC-BY](https://creativecommons.org/licenses/by/4.0/)). Quote modified
from the original - original quote is "We’re changing the ... easy-to-use open licenses."

Quote From Personal Notes (with no CC license)

Input JSON:

{
    "quote": "Buzzwords are an important part of a healthy meal!",
    "source": "personal notes about buzzwords",
    "license": "all rights reserved"
}

Output Markdown:

Buzzwords are an important part of a healthy meal!

- "Buzzwords are an ... a healthy meal!" is from personal notes about buzzwords (all rights reserved).

Inspirations

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment