UNPKG

yasme

Version:

Yet Another ShapeMap Editor

76 lines (55 loc) 2.77 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>YASME</title> <link rel="icon" type="image/png" href="doc/imgs/favicon.png"> <link href="dist/yasme.min.css" rel="stylesheet" type="text/css" /> <link href="doc/doc.min.css" rel="stylesheet" type="text/css" /> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> </head> <body> <a href="https://github.com/weso/YASME" target="_blank"><img style="z-index: 1; position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a> <!-- Fixed navbar --> <div class="navbar navbar-inverse" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">YASME</a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li><a target="_blank" href="http://www.weso.es/YASHE/">YASHE</a></li> <li><a target="_blank" href="http://shex.io/webapps/shex-author/">ShExAuthor</a></li> <li><a target="_blank" href="https://www.linkedin.com/in/pablo-menéndez-suárez-106262a7/">About me</a></li> </ul> </div><!--/.nav-collapse --> </div> </div> <div class="container" role="main"> <div class="row" id="aboutYQuery"> <div class="col-md-12"> <h1>About YASME</h1> YASME is a <a target="_blank" href='http://shex.io/shape-map'>ShapeMap</a> editor which started as a fork of <a target="_blank" href='http://www.weso.es/YASHE/'>YASHE</a> (which is based on ShEx). <div id="showcase"></div> <code>var yasme = YASME(document.getElementById("showcase"));</code> <br> (or, if you would like to instantiate YASME from an existing text area, use <code>var yasme = YASME.fromTextArea(document.getElementById('textAreaItem'));</code> </div> </div> <script src="dist/yasme.bundled.min.js"></script> <script src="doc/doc.min.js"></script> <script type="text/javascript"> var yasme = YASME(document.getElementById('showcase'), { persistent:null }); yasme.setSize(1135,400); </script> </body> </html>