Mirror of my test repo from PPFI Forĝejo as it has started having content I may want to return to later. https://git.piraattipuolue.fi/mikaela/testi
Go to file
Aminda Suomalainen be86f583a4
.gitignore: add node_modules from prettier/pre-commit/whatever
2024-01-03 15:48:39 +02:00
StreetComplete@3fb7eed6e8 test adding submodule 2023-01-24 13:13:13 +02:00
.editorconfig .{editorconfig,gitattributes,pre-commit-config-yaml}: add comments, check-yaml 2023-05-20 12:33:05 +03:00
.gitattributes .{editorconfig,gitattributes,pre-commit-config-yaml}: add comments, check-yaml 2023-05-20 12:33:05 +03:00
.gitignore .gitignore: add node_modules from prettier/pre-commit/whatever 2024-01-03 15:48:39 +02:00
.gitmodules .gitmodules: attempt to track main branch instead 2023-02-08 10:09:50 +02:00
.pre-commit-config.yaml pre-commit autoupdate 2024-01-03 15:47:24 +02:00
README.tex README.tex: add canonical address 2023-01-26 14:11:30 +02:00
chatgpt-cause-flyer.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-event-flyer.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-generalassembly-invite.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-humanrights-flyer.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-meetingnotes.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-organization-flyer.tex pre-commit 2023-05-09 13:24:37 +03:00
chatgpt-streetcomplete-flyer.tex It didnt use the space efficiently 2023-01-23 15:05:32 +02:00
chatgpt-technical-documentation-system-config.tex add a bit tailored chatgpt-technical-documentation-system-config.tex 2023-01-29 12:23:54 +02:00
chatgpt-toiminnantarkastus.tex add a chatgpt-toiminnantarkastus.tex 2023-01-25 11:59:00 +02:00

README.tex

\documentclass[a4paper,colorlinks,linkcolor=blue]{artikel3}
\usepackage[english,finnish]{babel}
\usepackage{hyperref}
\begin{document}
\hypersetup{urlcolor=blue}

Tämän repon pääosoite on \url{https://git.piraattipuolue.fi/mikaela/testi}

\section*{Testirepo For\^gejon ominaisuuksille}

For\^gejo on Gitea-forkki, joten tällä sivustolla puhutaan välillä Giteasta kun tarkoitetaan For\^gejoa.

Tässä repossa on mukana myös:


\begin{itemize}
    \item ChatGPT:llä leikkimisen tuloksena syntyneitä \LaTeX -asiakirjoja, joista voinee ehkä ottaa mallia tulevaisuudessa.
    \item Git submoduuli-testi, josta löytyy taidokkaampi StreetComplete-flaikku.
\end{itemize}

\subsection*{Kysymyksiä}
Voinko kirjoittaa \LaTeX ia?
Vastaus vaikuttaa olevan kyllä!

Miten hattu toisinpäin tehdään?
Mia\u{u}.

\selectlanguage{english}

\section*{Briefly in English}

The canonical address for this repository is \url{https://git.piraattipuolue.fi/mikaela/testi}

This repository is for testing For\^gejo features, mainly \LaTeX\ rendering.
And to that end I have played a lot with ChatGPT so I have fun documents to maybe take inspiration from in the future.

\subsection*{How do you render \LaTeX\ in For\^gejo?}

You will need to edit app.ini (note the path of basic.html):

\begin{verbatim}
[markup.latex]
ENABLED         = true
FILE_EXTENSIONS = .tex,.latex
# docs maybe suggest adding --katex, but is anyone doing math? https://docs.gitea.io/en-us/external-renderers/
RENDER_COMMAND  = "timeout 30s pandoc -f latex -t html --self-contained --template /etc/gitea/basic.html"
\end{verbatim}

And basic.html

\begin{verbatim}


$for(include-before)$
$include-before$
$endfor$
$if(title)$
$title$
$if(subtitle)$
$subtitle$
$endif$
$for(author)$
$author$
$endfor$
$if(date)$
$date$
$endif$
$endif$
$if(toc)$
$idprefix$TOC
$if(toc-title)$
$toc-title$
$endif$
$table-of-contents$
$endif$
$body$
$for(include-after)$
$include-after$
$endfor$
\end{verbatim}

This is adjusted from \texttt{pandoc -D html} (mainly stripping HTML and HEAD), by improving it, it could likely look even better.

Could this be better?
I would like to give For\^gejo command to render as pdf, see
\href{https://github.com/go-gitea/gitea/issues/17635}{Gitea\#17635: External renderers to PDF}.

\end{document}