Vhdl Codeblock Highlight
Add this to the head
of your HTML Page, or
add Shiki.
<script src="https://esm.sh/[email protected]" defer async></script>
Edit the codeblock.
library ieee;
use ieee.std_logic_1164.all;
entity HelloWorld is
end HelloWorld;
architecture Behavioral of HelloWorld is
begin
process
begin
report "Hello, VHDL!";
wait;
end process;
end Behavioral;
Copy paste this.