You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

282 lines
24 KiB

4 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
5 years ago
5 years ago
4 years ago
5 years ago
5 years ago
  1. const TOC_MOBILE =
  2. '<strong>ToC</strong> = {\n' +
  3. ' <strong><span class="hljs-string">\'1. Collections\'</span></strong>: [<a href="#list">List</a>, <a href="#dictionary">Dictionary</a>, <a href="#set">Set</a>,\n' +
  4. ' <a href="#tuple">Tuple</a>, <a href="#range">Range</a>, <a href="#enumerate">Enumerate</a>,\n' +
  5. ' <a href="#iterator">Iterator</a>, <a href="#generator">Generator</a>],\n' +
  6. ' <strong><span class="hljs-string">\'2. Types\'</span></strong>: [<a href="#type">Type</a>, <a href="#string">String</a>, <a href="#regex">Regular_Exp</a>,\n' +
  7. ' <a href="#format">Format</a>, <a href="#numbers">Numbers</a>,\n' +
  8. ' <a href="#combinatorics">Combinatorics</a>, <a href="#datetime">Datetime</a>],\n' +
  9. ' <strong><span class="hljs-string">\'3. Syntax\'</span></strong>: [<a href="#arguments">Args</a>, <a href="#inline">Inline</a>, <a href="#closure">Closure</a>,\n' +
  10. ' <a href="#decorator">Decorator</a>, <a href="#class">Class</a>,\n' +
  11. ' <a href="#ducktypes">Duck_Types</a>, <a href="#enum">Enum</a>,\n' +
  12. ' <a href="#exceptions">Exceptions</a>],\n' +
  13. ' <strong><span class="hljs-string">\'4. System\'</span></strong>: [<a href="#print">Print</a>, <a href="#input">Input</a>,\n' +
  14. ' <a href="#commandlinearguments">Command_Line_Arguments</a>,\n' +
  15. ' <a href="#open">Open</a>, <a href="#path">Path</a>,\n' +
  16. ' <a href="#oscommands">Command_Execution</a>],\n' +
  17. ' <strong><span class="hljs-string">\'5. Data\'</span></strong>: [<a href="#json">JSON</a>, <a href="#pickle">Pickle</a>, <a href="#csv">CSV</a>, <a href="#sqlite">SQLite</a>,\n' +
  18. ' <a href="#bytes">Bytes</a>, <a href="#struct">Struct</a>, <a href="#array">Array</a>,\n' +
  19. ' <a href="#memoryview">MemoryView</a>, <a href="#deque">Deque</a>],\n' +
  20. ' <strong><span class="hljs-string">\'6. Advanced\'</span></strong>: [<a href="#threading">Threading</a>, <a href="#operator">Operator</a>,\n' +
  21. ' <a href="#introspection">Introspection</a>,\n' +
  22. ' <a href="#metaprograming">Metaprograming</a>, <a href="#eval">Eval</a>,\n' +
  23. ' <a href="#coroutine">Coroutine</a>],\n' +
  24. ' <strong><span class="hljs-string">\'7. Libraries\'</span></strong>: [<a href="#progressbar">Progress_Bar</a>, <a href="#plot">Plot</a>, <a href="#table">Table</a>,\n' +
  25. ' <a href="#curses">Curses</a>, <a href="#logging">Logging</a>, <a href="#scraping">Scraping</a>,\n' +
  26. ' <a href="#web">Web</a>, <a href="#profiling">Profile</a>, <a href="#numpy">NumPy</a>,\n' +
  27. ' <a href="#image">Image</a>, <a href="#animation">Animation</a>, <a href="#audio">Audio</a>,\n' +
  28. ' <a href="#synthesizer">Synthesizer</a>]\n' +
  29. '}\n';
  30. const DIAGRAM_1_A =
  31. '+-------------+-------------+\n' +
  32. '| Classes | Metaclasses |\n' +
  33. '+-------------+-------------|\n' +
  34. '| MyClass --> MyMetaClass |\n';
  35. const DIAGRAM_1_B =
  36. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  37. '┃ Classes │ Metaclasses ┃\n' +
  38. '┠─────────────┼─────────────┨\n' +
  39. '┃ MyClass ──→ MyMetaClass ┃\n' +
  40. '┃ │ ↓ ┃\n' +
  41. '┃ object ─────→ type ←╮ ┃\n' +
  42. '┃ │ ↑ ╰───╯ ┃\n' +
  43. '┃ str ─────────╯ ┃\n' +
  44. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  45. const DIAGRAM_2_A =
  46. '+-------------+-------------+\n' +
  47. '| Classes | Metaclasses |\n' +
  48. '+-------------+-------------|\n' +
  49. '| MyClass | MyMetaClass |\n';
  50. const DIAGRAM_2_B =
  51. '┏━━━━━━━━━━━━━┯━━━━━━━━━━━━━┓\n' +
  52. '┃ Classes │ Metaclasses ┃\n' +
  53. '┠─────────────┼─────────────┨\n' +
  54. '┃ MyClass │ MyMetaClass ┃\n' +
  55. '┃ ↓ │ ↓ ┃\n' +
  56. '┃ object ←───── type ┃\n' +
  57. '┃ ↑ │ ┃\n' +
  58. '┃ str │ ┃\n' +
  59. '┗━━━━━━━━━━━━━┷━━━━━━━━━━━━━┛\n';
  60. const DIAGRAM_3_A =
  61. '+------------------+------------+------------+------------+\n' +
  62. '| | Sequence | Collection | Iterable |\n' +
  63. '+------------------+------------+------------+------------+\n';
  64. const DIAGRAM_3_B =
  65. '┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  66. '┃ │ Sequence │ Collection │ Iterable ┃\n' +
  67. '┠──────────────────┼────────────┼────────────┼────────────┨\n' +
  68. '┃ list, range, str │ ✓ │ ✓ │ ✓ ┃\n' +
  69. '┃ dict, set │ │ ✓ │ ✓ ┃\n' +
  70. '┃ iter │ │ │ ✓ ┃\n' +
  71. '┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  72. const DIAGRAM_4_A =
  73. '+--------------------+----------+----------+----------+----------+----------+\n' +
  74. '| | Integral | Rational | Real | Complex | Number |\n' +
  75. '+--------------------+----------+----------+----------+----------+----------+\n';
  76. const DIAGRAM_4_B =
  77. '┏━━━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  78. '┃ │ Integral │ Rational │ Real │ Complex │ Number ┃\n' +
  79. '┠────────────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  80. '┃ int │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  81. '┃ fractions.Fraction │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  82. '┃ float │ │ │ ✓ │ ✓ │ ✓ ┃\n' +
  83. '┃ complex │ │ │ │ ✓ │ ✓ ┃\n' +
  84. '┃ decimal.Decimal │ │ │ │ │ ✓ ┃\n' +
  85. '┗━━━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  86. const DIAGRAM_5_A =
  87. "+---------------+-----------------+-----------------+-----------------+-----------------+\n" +
  88. "| | {<float>} | {<float>:f} | {<float>:e} | {<float>:%} |\n" +
  89. "+---------------+-----------------+-----------------+-----------------+-----------------+\n";
  90. const DIAGRAM_5_B =
  91. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┓\n" +
  92. "┃ │ {&lt;float&gt;} │ {&lt;float&gt;:f} │ {&lt;float&gt;:e} │ {&lt;float&gt;:%} ┃\n" +
  93. "┠───────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┨\n" +
  94. "┃ 0.000056789 │ '5.6789e-05' │ '0.000057' │ '5.678900e-05' │ '0.005679%' ┃\n" +
  95. "┃ 0.00056789 │ '0.00056789' │ '0.000568' │ '5.678900e-04' │ '0.056789%' ┃\n" +
  96. "┃ 0.0056789 │ '0.0056789' │ '0.005679' │ '5.678900e-03' │ '0.567890%' ┃\n" +
  97. "┃ 0.056789 │ '0.056789' │ '0.056789' │ '5.678900e-02' │ '5.678900%' ┃\n" +
  98. "┃ 0.56789 │ '0.56789' │ '0.567890' │ '5.678900e-01' │ '56.789000%' ┃\n" +
  99. "┃ 5.6789 │ '5.6789' │ '5.678900' │ '5.678900e+00' │ '567.890000%' ┃\n" +
  100. "┃ 56.789 │ '56.789' │ '56.789000' │ '5.678900e+01' │ '5678.900000%' ┃\n" +
  101. "┃ 567.89 │ '567.89' │ '567.890000' │ '5.678900e+02' │ '56789.000000%' ┃\n" +
  102. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┛\n";
  103. const DIAGRAM_6_A =
  104. "+---------------+-----------------+-----------------+-----------------+-----------------+\n" +
  105. "| | {<float>:.2} | {<float>:.2f} | {<float>:.2e} | {<float>:.2%} |\n" +
  106. "+---------------+-----------------+-----------------+-----------------+-----------------+\n";
  107. const DIAGRAM_6_B =
  108. "┏━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━━━━┓\n" +
  109. "┃ │ {&lt;float&gt;:.2} │ {&lt;float&gt;:.2f} │ {&lt;float&gt;:.2e} │ {&lt;float&gt;:.2%} ┃\n" +
  110. "┠───────────────┼─────────────────┼─────────────────┼─────────────────┼─────────────────┨\n" +
  111. "┃ 0.000056789 │ '5.7e-05' │ '0.00' │ '5.68e-05' │ '0.01%' ┃\n" +
  112. "┃ 0.00056789 │ '0.00057' │ '0.00' │ '5.68e-04' │ '0.06%' ┃\n" +
  113. "┃ 0.0056789 │ '0.0057' │ '0.01' │ '5.68e-03' │ '0.57%' ┃\n" +
  114. "┃ 0.056789 │ '0.057' │ '0.06' │ '5.68e-02' │ '5.68%' ┃\n" +
  115. "┃ 0.56789 │ '0.57' │ '0.57' │ '5.68e-01' │ '56.79%' ┃\n" +
  116. "┃ 5.6789 │ '5.7' │ '5.68' │ '5.68e+00' │ '567.89%' ┃\n" +
  117. "┃ 56.789 │ '5.7e+01' │ '56.79' │ '5.68e+01' │ '5678.90%' ┃\n" +
  118. "┃ 567.89 │ '5.7e+02' │ '567.89' │ '5.68e+02' │ '56789.00%' ┃\n" +
  119. "┗━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━━━━┛\n";
  120. const DIAGRAM_7_A =
  121. '+------------+------------+------------+------------+--------------+\n' +
  122. '| | Iterable | Collection | Sequence | abc.Sequence |\n' +
  123. '+------------+------------+------------+------------+--------------+\n';
  124. const DIAGRAM_7_B =
  125. '┏━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n' +
  126. '┃ │ Iterable │ Collection │ Sequence │ abc.Sequence ┃\n' +
  127. '┠────────────┼────────────┼────────────┼────────────┼──────────────┨\n' +
  128. '┃ iter() │ ! │ ! │ ✓ │ ✓ ┃\n' +
  129. '┃ contains() │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  130. '┃ len() │ │ ! │ ! │ ! ┃\n' +
  131. '┃ getitem() │ │ │ ! │ ! ┃\n' +
  132. '┃ reversed() │ │ │ ✓ │ ✓ ┃\n' +
  133. '┃ index() │ │ │ │ ✓ ┃\n' +
  134. '┃ count() │ │ │ │ ✓ ┃\n' +
  135. '┗━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n';
  136. const DIAGRAM_8_A =
  137. 'BaseException\n' +
  138. ' +-- SystemExit';
  139. const DIAGRAM_8_B =
  140. "BaseException\n" +
  141. " ├── SystemExit <span class='hljs-comment'># Raised by the sys.exit() function.</span>\n" +
  142. " ├── KeyboardInterrupt <span class='hljs-comment'># Raised when the user hits the interrupt key (ctrl-c).</span>\n" +
  143. " └── Exception <span class='hljs-comment'># User-defined exceptions should be derived from this class.</span>\n" +
  144. " ├── StopIteration <span class='hljs-comment'># Raised by next() when run on an empty iterator.</span>\n" +
  145. " ├── ArithmeticError <span class='hljs-comment'># Base class for arithmetic errors.</span>\n" +
  146. " │ └── ZeroDivisionError <span class='hljs-comment'># Raised when dividing by zero.</span>\n" +
  147. " ├── AttributeError <span class='hljs-comment'># Raised when an attribute is missing.</span>\n" +
  148. " ├── EOFError <span class='hljs-comment'># Raised by input() when it hits end-of-file condition.</span>\n" +
  149. " ├── LookupError <span class='hljs-comment'># Raised when a look-up on a sequence or dict fails.</span>\n" +
  150. " │ ├── IndexError <span class='hljs-comment'># Raised when a sequence index is out of range.</span>\n" +
  151. " │ └── KeyError <span class='hljs-comment'># Raised when a dictionary key is not found.</span>\n" +
  152. " ├── NameError <span class='hljs-comment'># Raised when a variable name is not found.</span>\n" +
  153. " ├── OSError <span class='hljs-comment'># Failures such as “file not found” or “disk full”.</span>\n" +
  154. " │ └── FileNotFoundError <span class='hljs-comment'># When a file or directory is requested but doesn't exist.</span>\n" +
  155. " ├── RuntimeError <span class='hljs-comment'># Raised by errors that don't fall in other categories.</span>\n" +
  156. " │ └── RecursionError <span class='hljs-comment'># Raised when the the maximum recursion depth is exceeded.</span>\n" +
  157. " ├── TypeError <span class='hljs-comment'># Raised when an argument is of wrong type.</span>\n" +
  158. " └── ValueError <span class='hljs-comment'># When an argument is of right type but inappropriate value.</span>\n" +
  159. " └── UnicodeError <span class='hljs-comment'># Raised when encoding/decoding strings from/to bytes fails.</span>\n";
  160. const DIAGRAM_9_A =
  161. '+------------------+--------------+--------------+--------------+\n' +
  162. '| | excel | excel_tab | unix_dialect |\n' +
  163. '+------------------+--------------+--------------+--------------+\n';
  164. const DIAGRAM_9_B =
  165. "┏━━━━━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┯━━━━━━━━━━━━━━┓\n" +
  166. "┃ │ excel │ excel_tab │ unix_dialect ┃\n" +
  167. "┠──────────────────┼──────────────┼──────────────┼──────────────┨\n" +
  168. "┃ delimiter │ ',' │ '\\t' │ ',' ┃\n" +
  169. "┃ quotechar │ '\"' │ '\"' │ '\"' ┃\n" +
  170. "┃ doublequote │ True │ True │ True ┃\n" +
  171. "┃ skipinitialspace │ False │ False │ False ┃\n" +
  172. "┃ lineterminator │ '\\r\\n' │ '\\r\\n' │ '\\n' ┃\n" +
  173. "┃ quoting │ 0 │ 0 │ 1 ┃\n" +
  174. "┃ escapechar │ None │ None │ None ┃\n" +
  175. "┗━━━━━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┷━━━━━━━━━━━━━━┛\n";
  176. const DIAGRAM_10_A =
  177. '+-----------+------------+------------+------------+\n' +
  178. '| | list | dict | set |\n' +
  179. '+-----------+------------+------------+------------+\n';
  180. const DIAGRAM_10_B =
  181. '┏━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┯━━━━━━━━━━━━┓\n' +
  182. '┃ │ list │ dict │ set ┃\n' +
  183. '┠───────────┼────────────┼────────────┼────────────┨\n' +
  184. '┃ getitem() │ IndexError │ KeyError │ ┃\n' +
  185. '┃ pop() │ IndexError │ KeyError │ KeyError ┃\n' +
  186. '┃ remove() │ ValueError │ │ KeyError ┃\n' +
  187. '┃ index() │ ValueError │ │ ┃\n' +
  188. '┗━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┷━━━━━━━━━━━━┛\n';
  189. const DIAGRAM_11_A =
  190. '+-----------+-------------+------+-------------+\n' +
  191. '| sampwidth | min | zero | max |\n' +
  192. '+-----------+-------------+------+-------------+\n';
  193. const DIAGRAM_11_B =
  194. '┏━━━━━━━━━━━┯━━━━━━━━━━━━━┯━━━━━━┯━━━━━━━━━━━━━┓\n' +
  195. '┃ sampwidth │ min │ zero │ max ┃\n' +
  196. '┠───────────┼─────────────┼──────┼─────────────┨\n' +
  197. '┃ 1 │ 0 │ 128 │ 255 ┃\n' +
  198. '┃ 2 │ -32768 │ 0 │ 32767 ┃\n' +
  199. '┃ 3 │ -8388608 │ 0 │ 8388607 ┃\n' +
  200. '┃ 4 │ -2147483648 │ 0 │ 2147483647 ┃\n' +
  201. '┗━━━━━━━━━━━┷━━━━━━━━━━━━━┷━━━━━━┷━━━━━━━━━━━━━┛\n';
  202. const DIAGRAM_12_A =
  203. '+---------------+----------+----------+----------+----------+----------+\n';
  204. const DIAGRAM_12_B =
  205. '┏━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
  206. '┃ │ [ !#$%…] │ [a-zA-Z] │ [¼½¾…] │ [²³¹…] │ [0-9] ┃\n' +
  207. '┠───────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
  208. '┃ isprintable() │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  209. '┃ isalnum() │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
  210. '┃ isnumeric() │ │ │ ✓ │ ✓ │ ✓ ┃\n' +
  211. '┃ isdigit() │ │ │ │ ✓ │ ✓ ┃\n' +
  212. '┃ isdecimal() │ │ │ │ │ ✓ ┃\n' +
  213. '┗━━━━━━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┷━━━━━━━━━━┛\n';
  214. // isFontAvailable:
  215. (function(d){function c(c){b.style.fontFamily=c;e.appendChild(b);f=b.clientWidth;e.removeChild(b);return f}var f,e=d.body,b=d.createElement("span");b.innerHTML=Array(100).join("wi");b.style.cssText=["position:absolute","width:auto","font-size:128px","left:-99999px"].join(" !important;");var g=c("monospace"),h=c("serif"),k=c("sans-serif");window.isFontAvailable=function(b){return g!==c(b+",monospace")||k!==c(b+",sans-serif")||h!==c(b+",serif")}})(document);
  216. if (isFontAvailable('Menlo')) {
  217. $(`code:contains(${DIAGRAM_1_A})`).html(DIAGRAM_1_B);
  218. $(`code:contains(${DIAGRAM_2_A})`).html(DIAGRAM_2_B);
  219. $(`code:contains(${DIAGRAM_3_A})`).html(DIAGRAM_3_B);
  220. $(`code:contains(${DIAGRAM_4_A})`).html(DIAGRAM_4_B);
  221. $(`code:contains(${DIAGRAM_5_A})`).html(DIAGRAM_5_B);
  222. $(`code:contains(${DIAGRAM_6_A})`).html(DIAGRAM_6_B);
  223. $(`code:contains(${DIAGRAM_7_A})`).html(DIAGRAM_7_B);
  224. $(`code:contains(${DIAGRAM_8_A})`).html(DIAGRAM_8_B);
  225. $(`code:contains(${DIAGRAM_9_A})`).html(DIAGRAM_9_B);
  226. $(`code:contains(${DIAGRAM_10_A})`).html(DIAGRAM_10_B);
  227. $(`code:contains(${DIAGRAM_11_A})`).html(DIAGRAM_11_B);
  228. $(`code:contains(${DIAGRAM_12_A})`).html(DIAGRAM_12_B);
  229. }
  230. var isMobile = false;
  231. // Device detection:
  232. if(/(android|bb\d+|meego).+mobile|avantgo|bada\/|blackberry|blazer|compal|elaine|fennec|hiptop|iemobile|ip(hone|od)|ipad|iris|kindle|Android|Silk|lge |maemo|midp|mmp|netfront|opera m(ob|in)i|palm( os)?|phone|p(ixi|re)\/|plucker|pocket|psp|series(4|6)0|symbian|treo|up\.(browser|link)|vodafone|wap|windows (ce|phone)|xda|xiino/i.test(navigator.userAgent)
  233. || /1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s\-)|ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|attw|au(di|\-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|br(e|v)w|bumb|bw\-(n|u)|c55\/|capi|ccwa|cdm\-|cell|chtm|cldc|cmd\-|co(mp|nd)|craw|da(it|ll|ng)|dbte|dc\-s|devi|dica|dmob|do(c|p)o|ds(12|\-d)|el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(\-|_)|g1 u|g560|gene|gf\-5|g\-mo|go(\.w|od)|gr(ad|un)|haie|hcit|hd\-(m|p|t)|hei\-|hi(pt|ta)|hp( i|ip)|hs\-c|ht(c(\-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i\-(20|go|ma)|i230|iac( |\-|\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|keji|kgt( |\/)|klon|kpt |kwc\-|kyo(c|k)|le(no|xi)|lg( g|\/(k|l|u)|50|54|\-[a-w])|libw|lynx|m1\-w|m3ga|m50\/|ma(te|ui|xo)|mc(01|21|ca)|m\-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(\-| |o|v)|zz)|mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|ne((c|m)\-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|pan(a|d|t)|pdxg|pg(13|\-([1-8]|c))|phil|pire|pl(ay|uc)|pn\-2|po(ck|rt|se)|prox|psio|pt\-g|qa\-a|qc(07|12|21|32|60|\-[2-7]|i\-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|s55\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h\-|oo|p\-)|sdk\/|se(c(\-|0|1)|47|mc|nd|ri)|sgh\-|shar|sie(\-|m)|sk\-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h\-|v\-|v )|sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl\-|tdg\-|tel(i|m)|tim\-|t\-mo|to(pl|sh)|ts(70|m\-|m3|m5)|tx\-9|up(\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|\-v)|vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(\-| )|webc|whit|wi(g |nc|nw)|wmlb|wonu|x700|yas\-|your|zeto|zte\-/i.test(navigator.userAgent.substr(0,4))) {
  234. isMobile = true;
  235. }
  236. if (isMobile && window.screen.width < 768) {
  237. $(`code:contains(ToC)`).html(TOC_MOBILE);
  238. }
  239. // ===== Scroll to Top ====
  240. $(window).scroll(function() {
  241. if (isMobile && $(this).scrollTop() >= 480) { // If mobile device and page is scrolled more than 520px.
  242. $('#return-to-top').fadeIn(200); // Fade in the arrow
  243. } else {
  244. $('#return-to-top').fadeOut(200); // Else fade out the arrow
  245. }
  246. });
  247. $('#return-to-top').click(function() { // When arrow is clicked
  248. $('body,html').animate({
  249. scrollTop : 0 // Scroll to top of body
  250. }, 500);
  251. });