We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acdd21d commit adc4b06Copy full SHA for adc4b06
_static/download_pdf.js
@@ -3,4 +3,8 @@ document.addEventListener('DOMContentLoaded', function(){
3
document.querySelectorAll('.btn-download-pdf-button').forEach(a => {
4
a.onclick = () => window.open("/state-of-open-source-ai.pdf");
5
});
6
+ /// hide Markdown button
7
+ document.querySelectorAll('.btn-download-source-button').forEach(a => {
8
+ a.parentElement.style.display = 'none';
9
+ });
10
0 commit comments