Skip to content

Commit

Permalink
Add some relations in GA 29/30
Browse files Browse the repository at this point in the history
  • Loading branch information
andredelft committed Oct 10, 2024
1 parent 65fa97f commit 8c46c46
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
4 changes: 2 additions & 2 deletions heidegger_index/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def convert_numeric_unicode(value: str) -> str:

def gen_work_sort_key(key: str) -> str:
# Strip and add a leading zero to digits (GA 5 -> GA 005, GA 15 -> GA 015)
return re.sub("\d+", lambda m: f"{m.group():0>3}", key.strip())
return re.sub(r"\d+", lambda m: f"{m.group():0>3}", key.strip())


def gen_lemma_sort_key(key: str) -> str:
Expand All @@ -106,7 +106,7 @@ def gen_lemma_sort_key(key: str) -> str:
while n:
sort_key, n = PREFIX_FILTER.subn("", sort_key)
# Add leading zero's to numbers to improve number sorting
sort_key = re.sub("\d+", lambda m: f"{m.group():0>5}", sort_key)
sort_key = re.sub(r"\d+", lambda m: f"{m.group():0>5}", sort_key)
return sort_key


Expand Down
2 changes: 1 addition & 1 deletion index/descriptions/DK 22 B93.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
> De heer van wie het orakel in Delphi is, zegt niet en verbergt niet, maar geeft een teken. (Heraclitus, _Spreuken_, vert. door Cornelis Verhoeven, p. 29)
> "Der Herr, dessen das Orakel zu Delphi ist, spricht weder aus, noch verbirgt er, sonder gibt ein Zeichen \[be-deutet\]." Hier wird klar: Der Gegenbegriff des λέγειν, des 'zum Worte bringens', ist das κρύπτειν, das Verborgen- und in der Verborgenheit Halten. [@GA 29/30, p. 41]
> "Der Herr, dessen das Orakel zu Delphi ist, spricht weder aus, noch verbirgt er, sonder gibt ein Zeichen \[be-deutet\]." Hier wird klar: Der Gegenbegriff des [[λέγειν]], des 'zum Worte bringens', ist das [[κρύπτεσθαι|κρύπτειν]], das Verborgen- und in der Verborgenheit Halten. [@GA 29/30, p. 41]
14 changes: 14 additions & 0 deletions index/heidegger-index.yml
Original file line number Diff line number Diff line change
Expand Up @@ -830,6 +830,10 @@ DK 22 B112:
GA 29/30:
- start: 41
suffix: f
related:
- φύσις
- ἀληθέα
- λέγειν
type: w
DK 22 B121:
author: Heraklit
Expand Down Expand Up @@ -1151,6 +1155,9 @@ DK 22 B93:
- start: 185
WBPh:
- start: 277
related:
- κρύπτειν
- λέγειν
type: w
DK 22 B97:
author: Heraklit
Expand Down Expand Up @@ -6602,6 +6609,13 @@ wesentliche Möglichkeit des Seins:
references:
WBPh:
- start: 262
κρύπτειν:
lang: grc
parent: κρύπτεσθαι
references:
GA 29/30:
- start: 40
suffix: f
κρύπτεσθαι:
references:
GA 54:
Expand Down

0 comments on commit 8c46c46

Please sign in to comment.