diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..b378732 --- /dev/null +++ b/LICENSE @@ -0,0 +1 @@ +(C) Alexander Mahr 2024 + This work is licensed under AGPL-3.0-only diff --git a/README.md b/README.md new file mode 100644 index 0000000..1bcbe91 --- /dev/null +++ b/README.md @@ -0,0 +1,32 @@ +# Simple HTML files to use for word-processing (alternative to google docs/ms word et al) + +this repo features two files: + +1. [single.html](./single.html) +2. [word.html](.word.html) + +which attempt to make one of the most bloated pieces of software (i.e. 2020ies web browsers, i.e. Chromium + some rest +of Firefox and Webkit ) to be usable as word processor. + +## why? + +I like to be able to create pdf files sometimes, this allows this to do a [WYSWYG](https://en.wikipedia.org/wiki/WYSIWYG) +way to do this using [`contenteditble`](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/contenteditable) which is clearly +not perfect as it has shortcomings (i.e. to insert a newline one needs to input `ctrl-enter`). + +It is however to me a superior option than dealing with word processors. + +## Wanna try + +you can go to [https://alexmahr.de/word](https://alexmahr.de/word) and try it out. Ideally do it with a `chromium`/`blink` based +browser as those are 2024 a bit better in making the resulting `ctrl-p` (i.e. print page) pdf/printed document the correct size (i.e. letter/A4) + +## some screenshots + +![Screenshot](screenshots/single-page-01.avif "Screenshot" ) +![Screenshot](screenshots/single-page-02-pdf-or-print.avif "Screenshot" ) +![Screenshot](screenshots/word-edit-via-css.avif "Screenshot" ) + + +## License +(C) Alexander Mahr 2024 + This work is licensed under AGPL-3.0-only diff --git a/screenshots/single-page-01.avif b/screenshots/single-page-01.avif new file mode 100644 index 0000000..7343aec Binary files /dev/null and b/screenshots/single-page-01.avif differ diff --git a/screenshots/single-page-02-pdf-or-print.avif b/screenshots/single-page-02-pdf-or-print.avif new file mode 100644 index 0000000..a28d45f Binary files /dev/null and b/screenshots/single-page-02-pdf-or-print.avif differ diff --git a/screenshots/word-edit-via-css.avif b/screenshots/word-edit-via-css.avif new file mode 100644 index 0000000..e02a0f8 Binary files /dev/null and b/screenshots/word-edit-via-css.avif differ