Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix skipped heading level #199

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions app/views/how-tos/build-basic-prototype/create-pages.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
extends 'how-tos/build-basic-prototype/_BASE.njk' %} {% block makePrototype %}

<p>Create pages by copying template files that come with the prototype kit.</p>
<h3 id="create-a-start-page">Create a start page</h3>
<h2 id="create-a-start-page">Create a start page</h2>
<p>
Copy the <code class="language-markup">{{exampleStart.url}}.html</code> file
from <code class="language-markup">lib/example-templates</code> to
Expand All @@ -19,7 +19,7 @@ <h3 id="create-a-start-page">Create a start page</h3>
>
to preview <code class="language-markup">{{exampleStart.url}}.html</code>.
</p>
<h4 id="change-the-service-name">Change the service name</h4>
<h3 id="change-the-service-name">Change the service name</h3>
<p>
You'll normally edit the HTML to make changes to pages, but the service name
is in a config file. This is so we can change it in one place to update it on
Expand Down Expand Up @@ -48,7 +48,7 @@ <h4 id="change-the-service-name">Change the service name</h4>
refreshing. But for this config change, you need to refresh the page. You
should see your service name change on the Start page.
</p>
<h3 id="question-pages">Question pages</h3>
<h2 id="question-pages">Question pages</h2>
<p>
Make 2 copies of the
<code class="language-markup">question-page.html</code> file from
Expand Down Expand Up @@ -87,7 +87,7 @@ <h3 id="question-pages">Question pages</h3>
"text": </code>
to "{{exampleTextArea.title}}".
</p>
<h3 id="{{exampleCheckAnswers.url}}-page">Check answers page</h3>
<h2 id="{{exampleCheckAnswers.url}}-page">Check answers page</h2>
<p>
Copy the
<code class="language-markup">{{exampleCheckAnswers.url}}.html</code> file
Expand All @@ -102,7 +102,7 @@ <h3 id="{{exampleCheckAnswers.url}}-page">Check answers page</h3>
to check.
</p>

<h3 id="confirmation-page">Confirmation page</h3>
<h2 id="confirmation-page">Confirmation page</h2>
<p>
Copy the
<code class="language-markup">{{exampleConfirmation.url}}.html</code> file
Expand Down
Loading