New Hugo Site

New Hugo Site

About

Org mode table

First Second Third Fourth Fifth
First Second Third Fourth Fifth
First Second Third Fourth Fifth
First Second Third Fourth Fifth
First Second Third Fourth Fifth
First Second Third Fourth Fifth

Org mode code block

"use strict";

const panelHeader = document.querySelectorAll(".panel-header");

panelHeader.forEach(value => {
  value.addEventListener("click", event => {
    event.preventDefault();
    value.parentElement.classList.toggle("open");
    const panel = value.nextElementSibling;
    panel.style.height = panel.style.height ? null : panel.scrollHeight + "px";
  });
});

A list

  • First item
  • Second item
  • Third item

    • Third sub item
    • Third sub item 2
  • Fourth item