Open a browser tab showing single
(self, single_doc_html)
| 151 | return subprocess.call(cmd) |
| 152 | |
| 153 | def _open_browser(self, single_doc_html) -> None: |
| 154 | """ |
| 155 | Open a browser tab showing single |
| 156 | """ |
| 157 | url = os.path.join("file://", DOC_PATH, "build", "html", single_doc_html) |
| 158 | webbrowser.open(url, new=2) |
| 159 | |
| 160 | def _get_page_title(self, page): |
| 161 | """ |