mhuang001

Results 2 comments of mhuang001

I made a quick-and-dirty fix to add another prompt besides the current one. Have this in ``conf.py`` and you can have both prompts in effect equally: ``` copybutton_prompt_text = ">>>...

After I changed these lines near #55 and #265 ``` ..._js_file_path = os.path.join(current_dir, '../../web/assets/index-xxxx.js') ``` to ``` import pathlib _ = list(pathlib.Path(current_dir).glob('../../web/assets/index-*.js')) ..._js_file_path = str(_[0]) ``` I find the directory...