-
Notifications
You must be signed in to change notification settings - Fork 395
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add some middle dot symbols #1232
base: master
Are you sure you want to change the base?
Conversation
Thank you for your PR! Could you please tell us some references/URLs about "text-emphasis: dot in CSS" and "\cdot in LaTeX"? |
Added the white bullet because it is in JIS X 0213, too. |
src/data/symbol/symbol.tsv
Outdated
@@ -359,6 +359,10 @@ POS CHAR Reading (space separated) description additional description category m | |||
アルファベット э きりる ろしあ えー キリル文字 小文字 | |||
アルファベット ю きりる ろしあ ゆー キリル文字 小文字 | |||
アルファベット я きりる ろしあ やー キリル文字 小文字 | |||
句読点 · てん なかてん なかぐろ 、 ・ / 中点 欧文 OTHER U+00B7 MIDDLE DOT |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please let me know the reason why /
is also a reading?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is just because KATAKANA MIDDLE DOT has the same reading. I wonder why it has that reading. I may as well remove it from the latin MIDDLE DOT and bullets.
src/data/symbol/symbol.tsv
Outdated
@@ -359,6 +359,10 @@ POS CHAR Reading (space separated) description additional description category m | |||
アルファベット э きりる ろしあ えー キリル文字 小文字 | |||
アルファベット ю きりる ろしあ ゆー キリル文字 小文字 | |||
アルファベット я きりる ろしあ やー キリル文字 小文字 | |||
句読点 · てん なかてん なかぐろ 、 ・ / 中点 欧文 OTHER U+00B7 MIDDLE DOT | |||
句読点 • てん びゅれっと ぶれっと ばれっと ぶりっと 、 ・ / ビュレット OTHER リストの点は本来これ・圏点に使われることあり https://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis#dot U+2022 BULLET |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for adding the description, but I'd like to make it concise.
So please remove "リストの点は本来これ・圏点に使われることあり https://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis#dot" from this line, and note it in the commit message instead.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
note it in the commit message
I fear it will vanish by Squash and Merge.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, will remain on the second line onwards.
src/data/symbol/symbol.tsv
Outdated
句読点 · てん なかてん なかぐろ 、 ・ / 中点 欧文 OTHER U+00B7 MIDDLE DOT | ||
句読点 • てん びゅれっと ぶれっと ばれっと ぶりっと 、 ・ / ビュレット OTHER リストの点は本来これ・圏点に使われることあり https://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis#dot U+2022 BULLET | ||
句読点 ◦ てん びゅれっと ぶれっと ばれっと ぶりっと 、 ・ / 白ビュレット OTHER U+25E6 WHITE BULLET | ||
記号 ⋅ てん ないせき かける ・ 内積 乗算 ドット演算子 SYMBOL TeXの\cdot https://medemanabu.net/latex/dots/ U+22C5 DOT OPERATOR |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here too.
Bullets: used in list markers and sometimes emphasis markshttps://developer.mozilla.org/en-US/docs/Web/CSS/text-emphasis#dot DOT OPERATOR: \cdot in TeX: https://medemanabu.net/latex/dots/ (Japanese)
Description
Makes it possible to input some single dot symbols similar to the katakana middle dot (・):
text-emphasis: dot
in CSS\cdot
in LaTeXIssue IDs
Issue and/or discussion IDs related to this pull request.
Steps to test new behaviors (if any)
A clear and concise description about how to verify new behaviors (if any).
Additional context
Add any other context about the pull request here.