aboutsummaryrefslogtreecommitdiff
path: root/learn
diff options
context:
space:
mode:
Diffstat (limited to 'learn')
-rw-r--r--learn/python-0001.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/learn/python-0001.md b/learn/python-0001.md
index 6ff91c9..43ad167 100644
--- a/learn/python-0001.md
+++ b/learn/python-0001.md
@@ -6,6 +6,8 @@ description: Couple of observations regarding project management.
6 6
7Application will fetch and cache Flickr feed and in the second phase display these images on a webpage. 7Application will fetch and cache Flickr feed and in the second phase display these images on a webpage.
8 8
9``$ y=\sum_{i=1}^n g(x_i) $``
10
9Categories: Python, Bottlepy, SQLite3, RSS 11Categories: Python, Bottlepy, SQLite3, RSS
10 12
11**Table of contents** 13**Table of contents**
@@ -42,12 +44,12 @@ Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi mollis tempus sod
42 44
43<script> 45<script>
44 // auto encloses all code blocks into details in case of tutorials 46 // auto encloses all code blocks into details in case of tutorials
45 document.querySelectorAll('*[class^="language-"]').forEach(function(snippet, idx) { 47 /*document.querySelectorAll('*[class^="language-"]').forEach(function(snippet, idx) {
46 let details = document.createElement('details'); 48 let details = document.createElement('details');
47 let summary = document.createElement('summary'); 49 let summary = document.createElement('summary');
48 summary.innerText = 'Show solution'; 50 summary.innerText = 'Show solution';
49 details.appendChild(summary); 51 details.appendChild(summary);
50 details.appendChild(snippet.cloneNode(true)); 52 details.appendChild(snippet.cloneNode(true));
51 snippet.parentNode.replaceChild(details, snippet); 53 snippet.parentNode.replaceChild(details, snippet);
52 }); 54 });*/
53</script> 55</script>