use custom elements instead of classes
Some checks failed
deploy / test (push) Has been cancelled

This commit is contained in:
nora 2026-04-10 20:22:14 +02:00
parent aa9ed79163
commit 3d80f5896e
7 changed files with 25 additions and 25 deletions

View file

@ -7,7 +7,7 @@
<title>Womangling</title>
</head>
<body>
<main class="main">
<main>
<div class="content" id="content-area">
<h1>
<a class="root-link" href=".">Learn C++ Itanium Symbol Mangling</a>
@ -31,7 +31,7 @@
For every exercise, there will be a small quiz. If you complete the
quiz, you can continue
</p>
<div class="quiz-section">
<quiz-section>
<p>To complete the first quiz, press the button below.</p>
<form data-challenge="1">
<button
@ -43,7 +43,7 @@
</button>
<div class="error"></div>
</form>
</div>
</quiz-section>
</section>
<section data-step="1" class="step">
<p>
@ -81,7 +81,7 @@ extern "C" {
But once again, the symbol name will simply be
<code>main</code> because no mangling is applied.
</p>
<div class="quiz-section">
<quiz-section>
<p>What is the mangled symbol of the following function?</p>
<pre class="code">
extern "C" {
@ -99,7 +99,7 @@ extern "C" {
</button>
<div class="error"></div>
</form>
</div>
</quiz-section>
</section>
<section data-step="2" class="step">
<p>Congrats on answering your first mangling question!</p>