From b6c31f289cef27227e5aeaed2b733bcdaa2c2420 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Thu, 14 Aug 2025 11:27:38 -0500 Subject: chore: remove archive-contents and update test assets MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Delete the legacy archive-contents file. Add a new LaTeX test asset (assets/test-latex.tex). Rename existing test files for consistent naming: - test.ledger → test-ledger.ledger - test.md → test-markdown.md - test_misspellings.org → test-misspellings.org --- assets/test-latex.tex | 10 +++++ assets/test-ledger.ledger | 6 +++ assets/test-markdown.md | 87 ++++++++++++++++++++++++++++++++++++++++++++ assets/test-misspellings.org | 5 +++ assets/test.ledger | 6 --- assets/test.md | 87 -------------------------------------------- assets/test_misspellings.org | 5 --- 7 files changed, 108 insertions(+), 98 deletions(-) create mode 100644 assets/test-latex.tex create mode 100644 assets/test-ledger.ledger create mode 100644 assets/test-markdown.md create mode 100644 assets/test-misspellings.org delete mode 100644 assets/test.ledger delete mode 100644 assets/test.md delete mode 100644 assets/test_misspellings.org (limited to 'assets') diff --git a/assets/test-latex.tex b/assets/test-latex.tex new file mode 100644 index 000000000..410a798df --- /dev/null +++ b/assets/test-latex.tex @@ -0,0 +1,10 @@ +\documentclass[12pt]{article} +\usepackage{graphicx} +\begin{document} +\begin{figure}[ht] + \centering + \includegraphics{dice} + \caption{dice} + \label{fig:dice} +\end{figure} +\end{document} diff --git a/assets/test-ledger.ledger b/assets/test-ledger.ledger new file mode 100644 index 000000000..89ce77d17 --- /dev/null +++ b/assets/test-ledger.ledger @@ -0,0 +1,6 @@ + + +2022-10-03 ATM + Cash 100.00 USD + Bank -100.00 USD + diff --git a/assets/test-markdown.md b/assets/test-markdown.md new file mode 100644 index 000000000..0966b3663 --- /dev/null +++ b/assets/test-markdown.md @@ -0,0 +1,87 @@ +Markdown: Syntax +================ + + + + +* [Overview](#overview) + * [Philosophy](#philosophy) + * [Inline HTML](#html) + * [Automatic Escaping for Special Characters](#autoescape) +* [Block Elements](#block) + * [Paragraphs and Line Breaks](#p) + * [Headers](#header) + * [Blockquotes](#blockquote) + * [Lists](#list) + * [Code Blocks](#precode) + * [Horizontal Rules](#hr) +* [Span Elements](#span) + * [Links](#link) + * [Emphasis](#em) + * [Code](#code) + * [Images](#img) +* [Miscellaneous](#misc) + * [Backslash Escapes](#backslash) + * [Automatic Links](#autolink) + + +**Note:** This document is itself written using Markdown; you +can [see the source for it by adding '.text' to the URL][src]. + + [src]: /projects/markdown/syntax.text + +* * * + + +If you instead wrote the list in Markdown like this: + + 1. Bird + 1. McHale + 1. Parish + +or even: + + 3. Bird + 1. McHale + 8. Parish + +you'd get the exact same HTML output. The point is, if you want to, +you can use ordinal numbers in your ordered Markdown lists, so that +the numbers in your source match the numbers in your published HTML. +But if you want to be lazy, you don't have to. + +If you do use lazy list numbering, however, you should still start the +list with the number 1. At some point in the future, Markdown may support +starting ordered lists at an arbitrary number. + +List markers typically start at the left margin, but may be indented by +up to three spaces. List markers must be followed by one or more spaces +or a tab. + +To make lists look nice, you can wrap items with hanging indents: + + * Lorem ipsum dolor sit amet, consectetuer adipiscing elit. + Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, + viverra nec, fringilla in, laoreet vitae, risus. + * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. + Suspendisse id sem consectetuer libero luctus adipiscing. + +But if you want to be lazy, you don't have to: + + * Lorem ipsum dolor sit amet, consectetuer adipiscing elit. + Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, + viverra nec, fringilla in, laoreet vitae, risus. + * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. + Suspendisse id sem consectetuer libero luctus adipiscing. + +If list items are separated by blank lines, Markdown will wrap the +items in `

` tags in the HTML output. For example, this input: + + * Bird + * Magic diff --git a/assets/test-misspellings.org b/assets/test-misspellings.org new file mode 100644 index 000000000..7f492757f --- /dev/null +++ b/assets/test-misspellings.org @@ -0,0 +1,5 @@ + + +You would think that, being a librarian would be an easy and relaxing job - belying about in a quiet room, inhaling the fragrance of old pages, but it's actualy quite chalanging. For one, there's a lot of people that don't know how to mantain silence, and you have to constanly remind them to respect others. The cataloguing proces isn't as simpe as you might imagine either. You have to clasify each book according to it's author, do the Dewey Decimal System, and contole the circulation of the books. + +Running a libarary isn't only about keeping books and lending them out, it's a buisness that needs efective managment. It's unfortunete that it's often underestimated, but running a libaray can be as tough as any other job, requirering various skills and pasience. And let's not talk about late returners, they can be the bigest headache of all. Making sure books are returned on time and in good shape is a constant struggle. Always remember, libraries are truly treasures of knowledge, and the librarians are the guardians preserving them. diff --git a/assets/test.ledger b/assets/test.ledger deleted file mode 100644 index 89ce77d17..000000000 --- a/assets/test.ledger +++ /dev/null @@ -1,6 +0,0 @@ - - -2022-10-03 ATM - Cash 100.00 USD - Bank -100.00 USD - diff --git a/assets/test.md b/assets/test.md deleted file mode 100644 index 0966b3663..000000000 --- a/assets/test.md +++ /dev/null @@ -1,87 +0,0 @@ -Markdown: Syntax -================ - -

- - -* [Overview](#overview) - * [Philosophy](#philosophy) - * [Inline HTML](#html) - * [Automatic Escaping for Special Characters](#autoescape) -* [Block Elements](#block) - * [Paragraphs and Line Breaks](#p) - * [Headers](#header) - * [Blockquotes](#blockquote) - * [Lists](#list) - * [Code Blocks](#precode) - * [Horizontal Rules](#hr) -* [Span Elements](#span) - * [Links](#link) - * [Emphasis](#em) - * [Code](#code) - * [Images](#img) -* [Miscellaneous](#misc) - * [Backslash Escapes](#backslash) - * [Automatic Links](#autolink) - - -**Note:** This document is itself written using Markdown; you -can [see the source for it by adding '.text' to the URL][src]. - - [src]: /projects/markdown/syntax.text - -* * * - - -If you instead wrote the list in Markdown like this: - - 1. Bird - 1. McHale - 1. Parish - -or even: - - 3. Bird - 1. McHale - 8. Parish - -you'd get the exact same HTML output. The point is, if you want to, -you can use ordinal numbers in your ordered Markdown lists, so that -the numbers in your source match the numbers in your published HTML. -But if you want to be lazy, you don't have to. - -If you do use lazy list numbering, however, you should still start the -list with the number 1. At some point in the future, Markdown may support -starting ordered lists at an arbitrary number. - -List markers typically start at the left margin, but may be indented by -up to three spaces. List markers must be followed by one or more spaces -or a tab. - -To make lists look nice, you can wrap items with hanging indents: - - * Lorem ipsum dolor sit amet, consectetuer adipiscing elit. - Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, - viverra nec, fringilla in, laoreet vitae, risus. - * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. - Suspendisse id sem consectetuer libero luctus adipiscing. - -But if you want to be lazy, you don't have to: - - * Lorem ipsum dolor sit amet, consectetuer adipiscing elit. - Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, - viverra nec, fringilla in, laoreet vitae, risus. - * Donec sit amet nisl. Aliquam semper ipsum sit amet velit. - Suspendisse id sem consectetuer libero luctus adipiscing. - -If list items are separated by blank lines, Markdown will wrap the -items in `

` tags in the HTML output. For example, this input: - - * Bird - * Magic diff --git a/assets/test_misspellings.org b/assets/test_misspellings.org deleted file mode 100644 index 7f492757f..000000000 --- a/assets/test_misspellings.org +++ /dev/null @@ -1,5 +0,0 @@ - - -You would think that, being a librarian would be an easy and relaxing job - belying about in a quiet room, inhaling the fragrance of old pages, but it's actualy quite chalanging. For one, there's a lot of people that don't know how to mantain silence, and you have to constanly remind them to respect others. The cataloguing proces isn't as simpe as you might imagine either. You have to clasify each book according to it's author, do the Dewey Decimal System, and contole the circulation of the books. - -Running a libarary isn't only about keeping books and lending them out, it's a buisness that needs efective managment. It's unfortunete that it's often underestimated, but running a libaray can be as tough as any other job, requirering various skills and pasience. And let's not talk about late returners, they can be the bigest headache of all. Making sure books are returned on time and in good shape is a constant struggle. Always remember, libraries are truly treasures of knowledge, and the librarians are the guardians preserving them. -- cgit v1.2.3