From 092304d9e0ccc37cc0ddaa9b136457e56a1cac20 Mon Sep 17 00:00:00 2001 From: Craig Jennings Date: Sun, 12 Oct 2025 11:47:26 -0500 Subject: changing repositories --- assets/test/create-diff-dirs.sh | 27 +++ assets/test/test-html.html | 411 ++++++++++++++++++++++++++++++++++++++ assets/test/test-latex.tex | 10 + assets/test/test-markdown.md | 87 ++++++++ assets/test/test-misspellings.org | 5 + assets/test/test.org | 29 +++ assets/test/unicode.txt | 33 +++ 7 files changed, 602 insertions(+) create mode 100755 assets/test/create-diff-dirs.sh create mode 100644 assets/test/test-html.html create mode 100644 assets/test/test-latex.tex create mode 100644 assets/test/test-markdown.md create mode 100644 assets/test/test-misspellings.org create mode 100644 assets/test/test.org create mode 100644 assets/test/unicode.txt (limited to 'assets/test') diff --git a/assets/test/create-diff-dirs.sh b/assets/test/create-diff-dirs.sh new file mode 100755 index 00000000..15da8402 --- /dev/null +++ b/assets/test/create-diff-dirs.sh @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +# Create base directories +mkdir -p test-dir1/level1/level2/level3 +mkdir -p test-dir2/level1/level2/level3 + +# Create identical files in both directories +echo "same content" > test-dir1/level1/same1.txt +echo "same content" > test-dir2/level1/same1.txt + +echo "identical file" > test-dir1/level1/level2/same2.txt +echo "identical file" > test-dir2/level1/level2/same2.txt + +echo "matching" > test-dir1/level1/level2/level3/same3.txt +echo "matching" > test-dir2/level1/level2/level3/same3.txt + +# Create unique files in test-dir1 +echo "unique to test-dir1" > test-dir1/unique1.txt +echo "only in test-dir1" > test-dir1/level1/unique2.txt +echo "test-dir1 only" > test-dir1/level1/level2/unique3.txt +echo "test-dir1 specific" > test-dir1/level1/level2/level3/unique4.txt + +# Create unique files in test-dir2 +echo "unique to test-dir2" > test-dir2/unique5.txt +echo "only in test-dir2" > test-dir2/level1/unique6.txt +echo "test-dir2 only" > test-dir2/level1/level2/unique7.txt +echo "test-dir2 specific" > test-dir2/level1/level2/level3/unique8.txt diff --git a/assets/test/test-html.html b/assets/test/test-html.html new file mode 100644 index 00000000..4f0f500e --- /dev/null +++ b/assets/test/test-html.html @@ -0,0 +1,411 @@ + + + + + + Browser Test Page + + + +
+
+

🧪 Browser Test Page

+

Testing HTML5 tags, CSS3 features, and modern layouts

+
+ + + +
+

CSS Grid Layout

+
+
Grid Item 1
+
Grid Item 2
+
Grid Item 3
+
Grid Item 4
+
+
+ +
+

Flexbox Layout

+
+
Flex 1
+
Flex 2
+
Flex 3
+
+
+ +
+

Form Elements

+
+ + + + + + + + + + + + +
+
+ +
+

Media Elements

+
+ + + +
+
+ +
+

Table

+ + + + + + + + + + + + + + + + + + + + +
Header 1Header 2Header 3
Data 1Data 2Data 3
Data 4Data 5Data 6
+
+ +
+

Semantic Elements

+
+
+

Article Title

+ +
+

Article content with strong, emphasis, marked text, + deleted, inserted, subscript, superscript, + inline code, and Ctrl+C keyboard input.

+
Article footer
+
+
+ +
+

Lists

+
    +
  • Unordered item 1
  • +
  • Unordered item 2 +
      +
    • Nested item
    • +
    +
  • +
+
    +
  1. Ordered item 1
  2. +
  3. Ordered item 2
  4. +
+
+
Definition Term
+
Definition Description
+
+
+ +
+

Advanced Features

+
+ Click to expand +

Hidden content revealed!

+
+ +
+
+ This is a blockquote with custom styling using pseudo-elements +
+
+ +
+

CSS Filters

+ Demo + Demo + Demo +
+ +

Progress Elements

+ + +
+ +
+

CSS Columns

+
+

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris.

+
+
+ +
+ + +

Dialog Box

+

This is a native HTML5 dialog

+ +
+ +
+ + + + diff --git a/assets/test/test-latex.tex b/assets/test/test-latex.tex new file mode 100644 index 00000000..410a798d --- /dev/null +++ b/assets/test/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/test-markdown.md b/assets/test/test-markdown.md new file mode 100644 index 00000000..0966b366 --- /dev/null +++ b/assets/test/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/test-misspellings.org b/assets/test/test-misspellings.org new file mode 100644 index 00000000..7f492757 --- /dev/null +++ b/assets/test/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/test.org b/assets/test/test.org new file mode 100644 index 00000000..7ad5af83 --- /dev/null +++ b/assets/test/test.org @@ -0,0 +1,29 @@ +* My Document Title +** Level 1 +Text under level 1 +- Bullet item 1 level 1 +*** TODO First Task +Text under first task +- Bullet item 1 first task +*** Level 2 +Test under level 2 +- Bullet item 1 level 2 +**** TODO [#B] Second Task : Bullets and Checkboxes +Text under second task +More text under second task +- Bullet item 1 second task +- Bullet item 2 second task +- [ ] unchecked second task +- [X] checked second task +**** Level 3: babel +Text under level 3 +#+begin_src emacs-lisp + elisp code +#+end_src + +#+begin_src latex + latex code +#+end_src + +***** TODO Third Task +Text under third task diff --git a/assets/test/unicode.txt b/assets/test/unicode.txt new file mode 100644 index 00000000..6a354408 --- /dev/null +++ b/assets/test/unicode.txt @@ -0,0 +1,33 @@ +-*- coding: utf-8 -*- +Matching Pairs «»‹›“”‘’〖〗【】「」『』〈〉《》〔〕 +Greek ΓΔ Θ Λ ΞΠ Σ ΦΨΩ αβγδ εζηθ κλμ ξπ ρςτυ φχψω +currency ₿ ¤ $ ¢ € ₠ £ ¥ +common © ® ™ ² ³ § ¶ † ‡ ※ +Bullet-like •◦ ‣ ✓ ●■◆ ○□◇ ★☆ ♠♣♥♦ ♤♧♡♢ +phonetic ᴁ ᴂ ᴈ +Music ♩♪♫♬♭♮♯ +punctuation “” ‘’ ¿¡ ¶§ª - ‐ ‑ ‒ – — ― … +àáâãäåæç èéêë ìíîï ðñòóôõö øùúûüýþÿ ÀÁÂÃÄÅ Ç ÈÉÊË ÌÍÎÏ ÐÑ ÒÓÔÕÖ ØÙÚÛÜÝÞß +math ° ⌈⌉ ⌊⌋ ∏ ∑ ∫ ×÷ ⊕ ⊖ ⊗ ⊘ ⊙ ⊚ ⊛ ∙ ∘ ′ ″ ‴ ∼ ∂ √ ≔ × ⁱ ⁰ ¹ ² ³ ₀ ₁ ₂ +π ∞ ± ∎ +Logic ∵ ∴ ∀ ¬ ∧ ∨ ∃ ⊦ ∅ ∈ ∉ ⊂ ⊃ ⊆ ⊇ ⊄ ⋂ ⋃ +Relations ≠ ≤ ≥ ≮ ≯ ≈ ≡ +Sets ℕ ℤ ℚ ℝ ℂ +Arrows ←→↑↓ ↔ ↖↗↙↘ ⇐⇒⇑⇓ ⇔⇗ ⇦⇨⇧⇩ ↞↠↟↡ ↺↻ ☞☜☝☟ +Computing ⌘ ⌥ ‸ ⇧ ⌤ ↑ ↓ → ← ⇞ ⇟ ↖ ↘ ⌫ ⌦ ⎋⏏ ↶↷ ◀▶▲▼ ◁▷△▽ ⇄ ⇤⇥ ↹ ↵↩⏎ ⌧ ⌨ ␣ ⌶ ⎗⎘⎙⎚ ⌚⌛ ✂✄ ✉✍ +digits ➀➁➂➃➄➅➆➇➈➉ +Cultural 卐卍 ✝ ✚ ✡ ☥ ⎈ ☭ ☪ ☮ ☺ ☹ +☯ ☰ ☱ ☲ ☳ ☴ ☵ ☶ ☷ +☠ ☢ ☣ ☤ ♲ ♳ ⌬ ♨ ♿ ☉ ☼ ☾ ☽ ♀♂ ♔♕♖♗♘♙ ♚♛♜♝♞♟ +dingbats ❦ + +Asian Punctuations: 、。!,: + +林花謝了春紅 太匆匆, 無奈朝來寒雨 晚來風 +胭脂淚 留人醉 幾時重, 自是人生長恨 水長東 + +Emacs: Unicode Tutorial +http://ergoemacs.org/emacs/emacs_n_unicode.html + +Unicode search +http://xahlee.info/comp/unicode_index.html -- cgit v1.2.3