[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: stability of toc links
From: |
Maxim Nikulin |
Subject: |
Re: stability of toc links |
Date: |
Fri, 23 Apr 2021 22:15:06 +0700 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 |
On 21/04/2021 23:24, Nicolas Goaziou wrote:
In particular, I'm not sure to understand how one system can generate an
ID based on the heading content and still limit itself to alphanumeric
characters. For example, what ID are generated with the following
document?
My impression is that such conversion is rather wide spread in various
web CMS and documentation generators. I strongly prefer human-readable
anchors (when I can guess link content and realize if I have read it
earlier)
https://werkzeug.palletsprojects.com/en/1.0.x/tutorial/#step-0-a-basic-wsgi-introduction
to codes like
https://orgmode.org/worg/org-hacks.html#org98f055b
I know, Cyrillic is a trivial case in comparison to your example below,
however that is the case when I can confirm that result of
transliteration to ASCII is usually readable enough. It is usually
applied to article title to generate a path component of URL.
--8<---------------cut here---------------start------------->8---
* こんにちは
* コンニチハ
--8<---------------cut here---------------end--------------->8---
Sorry, I can not estimate if the following conversion is accurate enough:
python3 -c 'import unidecode; print(unidecode.unidecode("こんにちは"))'
konnichiha
python3 -c 'import unidecode; print(unidecode.unidecode("コンニチハ"))'
konnitiha
Hex anchors could be a fallback if smarter method could not generate
something reasonable. Finally, exporters can generate compiler-like
warnings if some problem with anchor stability/ambiguity is detected. A
helper function may be suitable to fix ID before editing of a heading.
Actually it was not obvious to me that IDs like org98f055b may be
stable. It is a hidden feature. I do not know if Samuel can adjust his
workflow to use copy from "published" (to local directory) files instead
of copy from export buffer. I guess, as a starting point it is necessary
to pre-populate cache with IDs from existing HTML documents somehow.
Anyway thank you for clarifying of the role of publishing.
- Re: stability of toc links, Nicolas Goaziou, 2021/04/18
- Re: stability of toc links, Samuel Wales, 2021/04/19
- Re: stability of toc links, Nicolas Goaziou, 2021/04/20
- Re: stability of toc links, Samuel Wales, 2021/04/20
- Re: stability of toc links, Nicolas Goaziou, 2021/04/21
- Re: stability of toc links, Samuel Loury, 2021/04/21
- Re: stability of toc links, Nicolas Goaziou, 2021/04/21
- Re: stability of toc links,
Maxim Nikulin <=
- Re: stability of toc links, Samuel Wales, 2021/04/23
- Re: stability of toc links, Samuel Wales, 2021/04/23
- Re: stability of toc links, Samuel Wales, 2021/04/23
- Re: stability of toc links, Timothy, 2021/04/23
- Re: stability of toc links, Dominique Dumont, 2021/04/25
- Re: stability of toc links, Timothy, 2021/04/30
- Re: stability of toc links, Maxim Nikulin, 2021/04/30
- Re: stability of toc links, Samuel Wales, 2021/04/21
- Re: stability of toc links, Samuel Wales, 2021/04/21
- Re: stability of toc links, TRS-80, 2021/04/29