"deploy/cpp_infer/docs/windows_vs2019_build.md" did not exist on "a3494c66e95f0505c86d0b1a3f1b70056a4dca36"
Unverified Commit 9d370c51 authored by Timothy Jaeryang Baek's avatar Timothy Jaeryang Baek Committed by GitHub
Browse files

Merge pull request #2612 from arkohut/support-py-for-run-code

feat: support py Python for code execution
parents e2e96b57 5166e92f
......@@ -215,7 +215,7 @@ __builtins__.input = input`);
<div class="p-1">{@html lang}</div>
<div class="flex items-center">
{#if lang === 'python' || (lang === '' && checkPythonCode(code))}
{#if lang.toLowerCase() === 'python' || lang.toLowerCase() === 'py' || (lang === '' && checkPythonCode(code))}
{#if executing}
<div class="copy-code-button bg-none border-none p-1 cursor-not-allowed">Running</div>
{:else}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment