Compare commits

...

9 Commits

Author SHA1 Message Date
1ce534d696 Apply convert scripts in Dockerfile 2024-04-07 00:20:19 +02:00
242bd75378 Merge commit '760cb91ad2651bd2a43b9e2a623f46bbf3e83017' as 'content' 2024-04-06 18:42:39 +02:00
760cb91ad2 Squashed 'content/' content from commit 61bf995
git-subtree-dir: content
git-subtree-split: 61bf99591773d910cda558e2779b351914b5b74a
2024-04-06 18:42:39 +02:00
7d8cc8d0be Remove content folder 2024-04-06 18:42:36 +02:00
51da3c172d Add subtrees and scripts to build and update subtrees 2024-04-06 18:38:57 +02:00
2be716bf75 Merge commit '4cb6b5fa4c881f21ad9d9280248feedfa97dab72' as 'custom/convert-usage' 2024-04-06 18:34:02 +02:00
4cb6b5fa4c Squashed 'custom/convert-usage/' content from commit 89c8624
git-subtree-dir: custom/convert-usage
git-subtree-split: 89c86247bbe47eac5ae358ca188e5d7a99abe2ee
2024-04-06 18:34:02 +02:00
7108c68a7b Merge commit '5283a7e4813de74b9dae8da1d17817fd89d0132e' as 'custom/convert-furigana' 2024-04-06 18:30:43 +02:00
5283a7e481 Squashed 'custom/convert-furigana/' content from commit f21e49b
git-subtree-dir: custom/convert-furigana
git-subtree-split: f21e49bb9b19794b85ea4cf778872c0524d84573
2024-04-06 18:30:42 +02:00
18 changed files with 320 additions and 3 deletions

View File

@ -1,3 +1,14 @@
FROM python:latest as convert
WORKDIR /usr/src/app
COPY content/ ./
COPY custom/convert-furigana/program/convert-furigana.py ./
COPY custom/convert-usage/program/convert-usage.py ./
ENV PIP_ROOT_USER_ACTION=ignore
RUN python -m pip install --upgrade pip
RUN python -m pip install beautifulsoup4
RUN python convert-furigana.py .
RUN python convert-usage.py .
FROM node:20-slim as builder
WORKDIR /usr/src/app
COPY package.json .
@ -8,4 +19,5 @@ FROM node:20-slim
WORKDIR /usr/src/app
COPY --from=builder /usr/src/app/ /usr/src/app/
COPY . .
COPY --from=convert /usr/src/app/ /usr/src/app/content/
CMD ["npx", "quartz", "build", "--serve"]

View File

9
content/LICENSE Normal file
View File

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2024 keb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

3
content/README.md Normal file
View File

@ -0,0 +1,3 @@
# jpg-content
Markdown content of the Japanese Grammar (JPG) project

View File

@ -1,2 +1,2 @@
docker build -t quartz-jpg ..
docker-compose up -d --force-recreate
docker build -t quartz-jpg .
cd custom && docker-compose up -d --force-recreate

View File

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2024 keb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,43 @@
# convert-furigana
## What is it?
There are a few extensions that add [furigana](https://en.wikipedia.org/wiki/Furigana) support to Markdown. I use [Obsidian](https://obsidian.md/), and therefore its furigana extension: [obsidian-markdown-furigana](https://github.com/steven-kraft/obsidian-markdown-furigana). It works well, but by nature is limited by being used within Obsidian.
For that purpose, this python script converts this specific syntax to common, all-platforms HTML ruby tags.
## Process
This specific extension syntax is as following:
```
{漢字|かんじ}
{漢字|かん|じ}
```
When processed by this script, the result is:
```
<ruby>漢字<rt>かんじ</rt></ruby>
<ruby><rt>かん</rt><rt></rt></ruby>
```
Which leads visually from, by default markdown standards:
> {漢字|かんじ}
>
> {漢字|かん|じ}
to common HTML ruby syntax:
> <ruby>漢字<rt>かんじ</rt></ruby>
>
> <ruby><rt>かん</rt><rt></rt></ruby>
## Limitations
This has been made for my personal use, which is only kanjis with kanas as furigana. The regexp used do not recognize other inputs. But you can modify them easily for your use if needed.
## Usage
Usage: `python3 convert-furigana.py [root folder]`
Note: Please be careful, this software applies modifications recursively!

View File

@ -0,0 +1,6 @@
{僕|ボク}の{筆記|ひっ|き}
### によるN
* テレビによる{報道|ほうどう}
* この{地震|じ|しん}による{津波|つ|なみ}の{心配|しんぱい}はありません。

View File

@ -0,0 +1,7 @@
## ふりがなテスト
{漢字|かんじ}
{漢字|かん|じ}
{漢字|カン|ジ}

View File

@ -0,0 +1,71 @@
import sys
import os
from glob import glob
import re
### Patterns ###
# https://www.reddit.com/r/learnpython/comments/h0tsaa/regex_expression_for_japanese_extracting/
re_brace = '{(.+?)}'
re_kanji = '([㐀-䶵一-鿋豈-頻]+)'
re_kana = '([ぁ-ゟ゠-ヿ]+)'
### Open file ###
def open_file(filename):
with open(filename, 'r', encoding='utf-8-sig') as file:
filedata = file.read()
return filedata
### Replace ###
def write_ruby_simple(kanji, kana):
return f"<ruby>{kanji}<rt>{kana}</rt></ruby>"
def write_ruby_multiple(kanji, kanas):
result = f"<ruby>"
for idx, kana in enumerate(kanas):
result += f"{kanji[idx]}"
result += f"<rt>{kana}</rt>"
result += f"</ruby>"
return result
def convert_to_ruby(content):
kanji = re.search(re_kanji, content.group())
kana = re.findall(re_kana, content.group())
if (len(kana) == 1):
return write_ruby_simple(kanji.group(), kana[0])
else:
return write_ruby_multiple(kanji.group(), kana)
def convert_pattern(text):
res_text = re.sub(re_brace, convert_to_ruby, text)
return res_text
### Write to file ###
def write_file(filename, text):
with open(filename, 'w', encoding='utf-8-sig') as file:
file.write(text)
### Execution ###
file_list = []
if len(sys.argv) > 1:
path = sys.argv[1]
for filename in glob(path + "/**/*.md", recursive=True):
if (os.path.isfile(filename)):
file_list.append(filename)
else:
print(f"Usage: python3 {sys.argv[0]} [root folder]")
print(f"Note: Please be careful, this software applies modifications recursively!")
for filename in file_list:
print(f"Found file {filename}, processing...", end='')
data = open_file(filename)
text = convert_pattern(data)
write_file(filename, text)
print(f" done!")

View File

@ -0,0 +1,9 @@
MIT License
Copyright (c) 2024 keb
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@ -0,0 +1,11 @@
# convert-usage
## Obsidian snippet
For my Japanese Grammar (JPG) project, I have created a style for explanation on the usage of certain grammar points. There is no simple way to make it in Markdown, so I tried to make it with the least amount of HTML possible. You can find it in `examples/sample.md`. However, for it to work, you have to import a custom [CSS snippet](https://help.obsidian.md/Extending+Obsidian/CSS+snippets) to Obsidian, which is located in `obsidian-snippet/usage.css`. But using it, you will have this kind of result:
![Obsidian screenshot](./screenshot.png)
## convert-usage.py
In my Quartz rendering of my markdown data, I want this kind of data to be in a callout. However, it is not possible to combine HTML and Markdown in Obsidian. For that purpose, this script encapsulates it directly in HTML. To make it both compatible in Obsidian and Quartz, and to be still easy to write, it's done with this python script. This is probably super specific and will not be of use for anybody except me!

View File

@ -0,0 +1,33 @@
# test file
## Lorem ipsum
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris massa eros, feugiat eu dapibus nec, fermentum vel ex. Nulla malesuada luctus pretium. Phasellus ac felis ut nisi lacinia malesuada nec vel odio. Donec tincidunt tincidunt lorem vel tempus. Nullam sed efficitur ligula, a porttitor nibh. Praesent justo dui, venenatis ac mi non, laoreet consequat libero. Aenean ut molestie mauris. Proin mattis volutpat ligula eget tincidunt. Fusce ex eros, condimentum consectetur efficitur vitae, euismod at justo.
**Usage**
<div class="usage">
<div class="left">
<p><span class="box">item1</span></p>
<p><span class="box">item2</span></p>
<p><span class="box">item3</span></p>
<p><span class="box">item4</span></p>
</div>
<p class="right">+ final</p>
</div>
## Phasellus tristique
Phasellus tristique rutrum enim. Integer vitae ex at turpis convallis posuere nec nec erat. Cras finibus erat mauris. Suspendisse id diam at sapien luctus faucibus. Pellentesque fermentum auctor libero, ut porta orci porttitor quis. In varius at sem sed ultricies. Mauris iaculis convallis erat, congue tincidunt turpis luctus vitae.
**Usage**
<div class="usage">
<div class="left">
<p><span class="box">アイテム1</span></p>
<p><span class="box">アイテム2</span></p>
<p><span class="box">アイテム3</span></p>
<p><span class="box">アイテム4</span></p>
</div>
<p class="right"> ファイナル</p>
</div>

View File

@ -0,0 +1,35 @@
.box {
display: inline-block;
width: fit-content;
margin: 0.2rem;
padding: 0.2rem 0.3rem 0.2rem 0.3rem;
border: 1px solid black;
border-radius: 0.5rem;
}
.usage {
display:flex;
flex-direction: row;
align-items: center;
}
.left {
padding-right: 1.7rem;
background-image: linear-gradient(black, black), linear-gradient(black, black);
background-repeat: no-repeat;
background-size: 8px 2px;
background-position: top right, bottom right;
border-right: solid black;
border-width: 0 2px;
}
.left p {
margin:0;
}
.right {
padding-left: 1rem;
}

View File

@ -0,0 +1,64 @@
import sys
import os
from glob import glob
from bs4 import BeautifulSoup
import re
### Patterns ###
re_usage = r'(^\*\*Usage\*\*$\n\n)'
callout_title_html = '''
<div class="callout-title">
<div class="callout-icon"></div>
<div class="callout-title-inner"><p>Usage</p></div>
</div>'''
### Open file ###
def open_file(filename):
with open(filename, 'r', encoding='utf-8-sig') as file:
filedata = file.read()
return filedata
### Write to file ###
def write_file(filename, text):
with open(filename, 'w', encoding='utf-8-sig') as file:
file.write(text)
### Replace ###
def convert_pattern(text):
text = re.sub(re_usage, '', text, flags=re.MULTILINE)
soup = BeautifulSoup(text, features="html.parser")
for tag in soup.find_all('div', {"class": "usage"}):
new_blockquote = soup.new_tag("blockquote", **{"class": "callout notes", "data-callout": "notes"})
tag.wrap(new_blockquote)
calloutTitle = BeautifulSoup(callout_title_html, features="html.parser")
tag.insert_before(calloutTitle)
return str(soup)
### Execution ###
file_list = []
if len(sys.argv) > 1:
path = sys.argv[1]
for filename in glob(path + "/**/*.md", recursive=True):
if (os.path.isfile(filename)):
file_list.append(filename)
else:
print(f"Usage: python3 {sys.argv[0]} [root folder]")
print(f"Note: Please be careful, this software applies modifications recursively!")
for filename in file_list:
print(f"Found file {filename}, processing...", end='')
data = open_file(filename)
text = convert_pattern(data)
write_file(filename, text)
print(f" done!")

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@ -8,7 +8,7 @@ services:
dockerfile: Dockerfile
environment:
NODE_ENV: production
container_name: quartz
container_name: quartz-jpg-container
restart: always
ports:
- 8080:8080

5
custom/update-repos.sh Normal file
View File

@ -0,0 +1,5 @@
git fetch convert-furigana main
git subtree pull --prefix custom/convert-furigana convert-furigana main --squash
git fetch convert-usage main
git subtree pull --prefix custom/convert-usage convert-usage main --squash