This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<style xmlns="http://purl.org/net/xbiblio/csl" class="in-text" version="1.0" demote-non-dropping-particle="sort-only" page-range-format="expanded" default-locale="en-US"> | |
<info> | |
<title>American Medical Association 11th edition JMIR</title> | |
<title-short>AMA JMIR (11th ed.)</title-short> | |
<id>http://www.zotero.org/styles/american-medical-association</id> | |
<link href="http://www.zotero.org/styles/american-medical-association" rel="self"/> | |
<link href="http://www.zotero.org/styles/american-medical-association-10th-edition" rel="template"/> | |
<link href="https://westlibrary.txwes.edu/sites/default/files/pdf/AMACitationStyle.pdf" rel="documentation"/> | |
<link href="https://www.amamanualofstyle.com/fileasset/AMAMOS/aaaAMWA%20presentation%20Nov%202019%20FULL.pdf" rel="documentation"/> |
This file contains 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
var onloadCallbackCaptcha = function(sitekey) { | |
grecaptcha.render('div-recaptcha'); | |
}; | |
function showComments() { | |
// Remove button | |
var staticmanButton = document.getElementById('staticman-button'); | |
staticmanButton.parentNode.removeChild(staticmanButton); | |
// Un-hide comments | |
var staticmanComments = document.getElementById('staticman-comments'); |
This file contains 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
/* Styles for staticman fields*/ | |
.staticman-comments { | |
margin-bottom: 2rem; | |
} | |
.staticman-comments .comment-author, .comment-content, .comment-timestamp { | |
margin-top: 0; | |
font-size: 0.85rem; | |
} | |
.staticman-comments article{ | |
display: grid; |
This file contains 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
{{ with .Site.Params.staticman.api }} | |
<aside aria-label="note" class="note"> | |
<section id="comment-thankyou" style="display: none; margin-left: 5px"> | |
Thank you for your comment, it will be displayed once it has been approved! | |
</section> | |
</aside> | |
<script type="application/javascript"> | |
if (/comment-thankyou/.test(window.location.href)) { | |
document.getElementById('comment-thankyou').style.display = 'block'; | |
}else{ |
This file contains 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
// Node.js CheatSheet. | |
// Download the Node.js source code or a pre-built installer for your platform, and start developing today. | |
// Download: http://nodejs.org/download/ | |
// More: http://nodejs.org/api/all.html | |
// 0. Synopsis. | |
// http://nodejs.org/api/synopsis.html | |