Sematre

Results 14 comments of Sematre

I would pipe it through ``iconv --from-code ``. Example: If your file is encoded with windows-1252, you can fix it like that: ``cat /tmp/index.html | iconv --from-code windows-1252 | htmlq...

> This is what worked for me: `export AMDGPU_TARGET=gfx1030 HSA_OVERRIDE_GFX_VERSION=10.3.0 ROCM_PATH=/opt/rocm CLBlast_DIR=/usr/lib/cmake/CLBlast` > > PKGBUILD: > > ``` > pkgname=ollama-rocm > pkgdesc='Create, run and share large language models (LLMs) with...

English is just the default. You can change it to German like this: ```typst #show: letter-simple.with( // [...] page-numbering: (current-page, page-count) => [Seite #current-page von #page-count], ) ```

The page numbering is the only place where in this library where there is a default English text. Everything else in this library is language independent. Even tho this letter...

> Is there a way of testing for text.lang and then doing a conditional? You can get the current document language with this: ```typst #context { let the_language = text.lang...

This feature is now implemented and will be available in the upcoming `3.0` release.

I would love to have this option built-in. Unfortunately, I haven't found a good solution for this yet. Deutsche Post only distributes stamps in the form of PDFs and as...

Seems like a useful addition, but how would you define the API? If this is your first example: ```typst #show: letter-simple.with( sender: ( name: "Anja Ahlsen", address: "Deutschherrenufer 28, 60528...

The reason why a comma is inserted here is, that it generates the default address line. Your patch would remove this comma. ![Screenshot From 2024-10-30 22-35-42](https://github.com/user-attachments/assets/64d9381b-febc-4d3a-b36a-51ea5587b05e) Commas are also used...