100% FREE

Elm 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.

module Main exposing (main)

import Browser
import Html exposing (text)

main =
    Browser.sandbox { init = "Hello, Elm!", update = update, view = view }

update msg model =
    model

view model =
    text model

Copy paste this.

Other Free Tools