mirror of
https://github.com/ZetaKebab/quartz.git
synced 2025-01-14 22:18:43 +00:00
Merge commit '4cb6b5fa4c881f21ad9d9280248feedfa97dab72' as 'custom/convert-usage'
This commit is contained in:
commit
2be716bf75
9
custom/convert-usage/LICENSE
Normal file
9
custom/convert-usage/LICENSE
Normal 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.
|
11
custom/convert-usage/README.md
Normal file
11
custom/convert-usage/README.md
Normal 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!
|
33
custom/convert-usage/examples/sample.md
Normal file
33
custom/convert-usage/examples/sample.md
Normal 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>
|
35
custom/convert-usage/obsidian-snippets/usage.css
Normal file
35
custom/convert-usage/obsidian-snippets/usage.css
Normal 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;
|
||||||
|
}
|
64
custom/convert-usage/program/convert-usage.py
Normal file
64
custom/convert-usage/program/convert-usage.py
Normal 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!")
|
BIN
custom/convert-usage/screenshot.png
Normal file
BIN
custom/convert-usage/screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
Loading…
Reference in New Issue
Block a user