diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2018-09-19 03:30:26 +0200 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2018-09-19 03:30:26 +0200 |
| commit | 40ea8d80683c944d46f8e33f3a0957c61dabc453 (patch) | |
| tree | b7690366ee1a2e6cc280da66d06b477b443bc65e /learn/python-0001.md | |
| parent | db33c6b294f38e82154156e496826736f009186d (diff) | |
| download | mitjafelicijan.com-40ea8d80683c944d46f8e33f3a0957c61dabc453.tar.gz | |
content update
Diffstat (limited to 'learn/python-0001.md')
| -rw-r--r-- | learn/python-0001.md | 6 |
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 | ||
| 7 | Application will fetch and cache Flickr feed and in the second phase display these images on a webpage. | 7 | Application 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 | |||
| 9 | Categories: Python, Bottlepy, SQLite3, RSS | 11 | Categories: 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> |
