Created
June 13, 2013 19:22
-
-
Save sbussard/5776558 to your computer and use it in GitHub Desktop.
if all meta information was stored in a meta file it would be one step closer toward a more semantic web.
meta.json could replace all html meta tags, robots.txt, humans.txt, and add the ability to map pages to ontologies through the use of selectors.
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
// created for apple.com/contact | |
"{ | |
'language': 'en-us', | |
'charset': 'utf-8', | |
'author': 'Apple Inc.', | |
'omni_page': 'How to Contact Us', | |
'publish-date': 'May 12, 2013', | |
'sitemap': 'http://www.apple.com/sitemap', | |
'shortcut-icon': 'http://www.apple.com/favicon.ico', | |
'viewport': 'width=1024', | |
'robots': [{ | |
'user-agent': '*', | |
'disallow': [] | |
}], | |
ontology: { | |
'url': '', | |
'address': 'address', | |
'navigation': '#globalnav' | |
} | |
}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
if all meta information was stored in a meta file it would be one step closer toward a more semantic web. meta.json could replace all html meta tags, robots.txt, humans.txt, and add the ability to map pages to ontologies through the use of selectors.