% Can we simply upper case TOC entries for level 1 and 2 sections?
\ExplSyntaxOn
\cs_new_eq:NN \ToUppercase \text_uppercase:n
\ExplSyntaxOff
\renewcommand\addsectiontocentry[2]{%
\addtocentrydefault{section}{#1}{\texorpdfstring{\expandafter\ToUppercase\expandafter{#2}}{#2}}%
}
\renewcommand\addsubsectiontocentry[2]{%
\addtocentrydefault{subsection}{#1}{\texorpdfstring{\expandafter\ToUppercase\expandafter{#2}}{#2}}%
}
% unbold level 3 and 4 etc sections
\setkomafont{subsubsection}{\normalfont}
\setkomafont{paragraph}{\normalfont}
% Provide the Shaded and Highlighting environments in case code comes along
\usepackage{color}
\usepackage{fancyvrb}
\newcommand{\VerbBar}{|}
\newcommand{\VERB}{\Verb[commandchars=\\\{\}]}
Implemented in commit 0e273505df41520bcc4994d41166c72c429b8c2b and available in v2024.9.29