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

Formatted the footnotes as numbers instead of bullets #16

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
8 changes: 4 additions & 4 deletions ch03-a-web-1-0-application.typ
Original file line number Diff line number Diff line change
Expand Up @@ -394,10 +394,10 @@ Here is what the template code for the contact table looks like:
</table>
```,
)
- Output some headers for our table.
- Iterate over the contacts that were passed in to the template.
- Output the values of the current contact, first name, last name, etc.
- An "operations" column, with links to edit or view the contact details.
1. Output some headers for our table.
2. Iterate over the contacts that were passed in to the template.
3. Output the values of the current contact, first name, last name, etc.
4. An "operations" column, with links to edit or view the contact details.

This is the core of the page: we construct a table with appropriate headers
matching the data we are going to show for each contact. We iterate over the
Expand Down