From d78ba9f4f11155c00eeffa6755f3613676ba6b58 Mon Sep 17 00:00:00 2001 From: MORIOKA Tomohiko Date: Tue, 6 Jun 2017 15:47:51 +0900 Subject: [PATCH] (chise-turtle-uri-encode-feature-name): - Convert `<-original' to "ideo:original-form-of". - Convert `<-Small-Seal' to "ideo:Small-Seal-of". - Convert `<-interchangeable' to "ideo:interchangeable-form-of". - Convert `->interchangeable' to "ideo:interchangeable". --- char-db-turtle.el | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/char-db-turtle.el b/char-db-turtle.el index 07c7ae7..8c3147b 100644 --- a/char-db-turtle.el +++ b/char-db-turtle.el @@ -226,8 +226,16 @@ "ideo:simplified-form-of") ((eq '<-vulgar feature-name) "ideo:vulgar-form-of") + ((eq '<-original feature-name) + "ideo:original-form-of") ((eq '<-ancient feature-name) "ideo:ancient-form-of") + ((eq '<-Small-Seal feature-name) + "ideo:Small-Seal-of") + ((eq '<-interchangeable feature-name) + "ideo:interchangeable-form-of") + ((eq '->interchangeable feature-name) + "ideo:interchangeable") ((eq '->mistakable feature-name) "ideo:mistakable") ((eq 'hanyu-dazidian feature-name) -- 1.7.10.4