├── .changepacks └── config.json ├── .github ├── FUNDING.yml └── workflows │ ├── publish-pypi.yml │ └── publish.yml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── __tests__ └── index.test.ts ├── apps └── landing │ ├── .gitignore │ ├── README.md │ ├── devup.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── public │ ├── 2024 개정 한국 점자 규정.pdf │ ├── favicon.svg │ ├── file.svg │ ├── globe.svg │ ├── images │ │ ├── close.svg │ │ ├── color-theme-dark.svg │ │ ├── color-theme.svg │ │ ├── discord.svg │ │ ├── docs │ │ │ └── menu-arrow.svg │ │ ├── github.svg │ │ ├── home │ │ │ ├── background-braille.svg │ │ │ ├── button-arrow.svg │ │ │ ├── finger-point.svg │ │ │ ├── hero.svg │ │ │ ├── texture.png │ │ │ ├── translate-arrow-circle.svg │ │ │ └── translate-arrow.svg │ │ ├── kakao.svg │ │ ├── team │ │ │ ├── image-01.jpg │ │ │ ├── image-02.jpg │ │ │ ├── image-03.jpg │ │ │ ├── image-04.jpg │ │ │ ├── profile-01.jpg │ │ │ ├── profile-02.jpg │ │ │ └── profile-03.jpg │ │ └── test-case │ │ │ ├── error.svg │ │ │ └── success.svg │ ├── next.svg │ ├── og-image.png │ ├── vercel.svg │ └── window.svg │ ├── src │ ├── app │ │ ├── Trans.tsx │ │ ├── TransInput.tsx │ │ ├── docs │ │ │ ├── LeftMenu.tsx │ │ │ ├── MenuItem.tsx │ │ │ ├── OpenMenuItem.tsx │ │ │ ├── RightIndex.tsx │ │ │ ├── api │ │ │ │ └── page.mdx │ │ │ ├── contributing │ │ │ │ └── page.mdx │ │ │ ├── installation │ │ │ │ └── page.mdx │ │ │ ├── layout.tsx │ │ │ └── overview │ │ │ │ └── page.mdx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── team │ │ │ └── page.tsx │ │ └── test-case │ │ │ └── page.tsx │ ├── components │ │ ├── Code.tsx │ │ ├── Footer │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── MobileMenu.tsx │ │ │ ├── MobileMenuButton.tsx │ │ │ ├── MobileMenuProvider.tsx │ │ │ ├── Pages.tsx │ │ │ ├── ThemeSwitch.tsx │ │ │ └── index.tsx │ │ ├── home │ │ │ └── PillButton.tsx │ │ ├── icons │ │ │ ├── IconBraillify.tsx │ │ │ ├── IconColorTheme.tsx │ │ │ ├── IconDiscord.tsx │ │ │ ├── IconGithub.tsx │ │ │ ├── IconHamburger.tsx │ │ │ └── IconKakao.tsx │ │ ├── team │ │ │ └── TeamMemberCard.tsx │ │ └── test-case │ │ │ ├── FailedOnlyInput.tsx │ │ │ ├── TestCaseCircle.tsx │ │ │ ├── TestCaseDisplayBoundary.tsx │ │ │ ├── TestCaseFilterContainer.tsx │ │ │ ├── TestCaseProvider.tsx │ │ │ ├── TestCaseRuleContainer.tsx │ │ │ ├── TestCaseStat.tsx │ │ │ ├── TestCaseTypeToggle.tsx │ │ │ ├── Tooltip.tsx │ │ │ ├── filter │ │ │ └── TestCaseFilter.tsx │ │ │ ├── list │ │ │ └── TestCaseList.tsx │ │ │ └── table │ │ │ ├── TestCaseTable.tsx │ │ │ └── index.tsx │ ├── constants │ │ └── index.ts │ ├── hooks │ │ └── useIntersectionObserver.ts │ ├── mdx-components.tsx │ └── types │ │ └── index.ts │ └── tsconfig.json ├── braillove-case-collector ├── .gitignore ├── .python-version ├── README.md ├── converter.py ├── input.csv ├── main.py ├── output.csv ├── pyproject.toml └── uv.lock ├── bun.lock ├── docs └── 2024 개정 한국 점자 규정.pdf ├── eslint.config.mjs ├── libs └── braillify │ ├── Cargo.toml │ ├── build.rs │ └── src │ ├── char_shortcut.rs │ ├── char_struct.rs │ ├── cli.rs │ ├── english.rs │ ├── english_logic.rs │ ├── fraction.rs │ ├── jauem │ ├── choseong.rs │ ├── jongseong.rs │ └── mod.rs │ ├── korean_char.rs │ ├── korean_part.rs │ ├── lib.rs │ ├── main.rs │ ├── math_symbol_shortcut.rs │ ├── moeum │ ├── jungsong.rs │ └── mod.rs │ ├── number.rs │ ├── rule.rs │ ├── rule_en.rs │ ├── split.rs │ ├── symbol_shortcut.rs │ ├── unicode.rs │ ├── utils.rs │ └── word_shortcut.rs ├── media └── logo.svg ├── package.json ├── packages ├── node │ ├── .gitignore │ ├── CHANGELOG.md │ ├── Cargo.toml │ ├── LICENSE_APACHE │ ├── README.md │ ├── package.json │ ├── pnpm-lock.yaml │ ├── src │ │ ├── lib.rs │ │ └── utils.rs │ └── tests │ │ └── web.rs └── python │ ├── .gitignore │ ├── Cargo.toml │ ├── README.md │ ├── braillify.pyi │ ├── pyproject.toml │ └── src │ └── lib.rs ├── py-test ├── __init__.py └── pyproject.toml ├── pyproject.toml ├── rule_map.json ├── test_case_inputs ├── rule_1.csv ├── rule_10.csv ├── rule_11.csv ├── rule_11_b1.csv ├── rule_12.csv ├── rule_12_b1.csv ├── rule_13.csv ├── rule_14.csv ├── rule_14_b1.csv ├── rule_15.csv ├── rule_16.csv ├── rule_17.csv ├── rule_18.csv ├── rule_18_b1.csv ├── rule_1_b1.csv ├── rule_2.csv ├── rule_28.csv ├── rule_29.csv ├── rule_3.csv ├── rule_4.csv ├── rule_40.csv ├── rule_41.csv ├── rule_42.csv ├── rule_43.csv ├── rule_43_b1.csv ├── rule_44.csv ├── rule_44_b1.csv ├── rule_45.csv ├── rule_46.csv ├── rule_5.csv ├── rule_6.csv ├── rule_7.csv ├── rule_8.csv ├── rule_9.csv └── sentence.csv ├── test_cases ├── rule_1.csv ├── rule_10.csv ├── rule_11.csv ├── rule_11_b1.csv ├── rule_12.csv ├── rule_12_b1.csv ├── rule_13.csv ├── rule_14.csv ├── rule_14_b1.csv ├── rule_15.csv ├── rule_16.csv ├── rule_17.csv ├── rule_18.csv ├── rule_18_b1.csv ├── rule_1_b1.csv ├── rule_2.csv ├── rule_28.csv ├── rule_29.csv ├── rule_3.csv ├── rule_32.csv ├── rule_33.csv ├── rule_33_b1.csv ├── rule_34.csv ├── rule_35.csv ├── rule_4.csv ├── rule_40.csv ├── rule_41.csv ├── rule_42.csv ├── rule_43.csv ├── rule_43_b1.csv ├── rule_44.csv ├── rule_44_b1.csv ├── rule_45.csv ├── rule_46.csv ├── rule_47.csv ├── rule_48.csv ├── rule_49.csv ├── rule_5.csv ├── rule_50.csv ├── rule_51.csv ├── rule_51_b1.csv ├── rule_51_b2.csv ├── rule_52.csv ├── rule_53.csv ├── rule_53_b1.csv ├── rule_54.csv ├── rule_55.csv ├── rule_55_b1.csv ├── rule_56.csv ├── rule_57.csv ├── rule_58.csv ├── rule_59.csv ├── rule_6.csv ├── rule_60.csv ├── rule_61.csv ├── rule_62.csv ├── rule_63.csv ├── rule_7.csv ├── rule_8.csv ├── rule_9.csv └── sentence.csv ├── tsconfig.json ├── uv.lock └── vitest.config.ts /.changepacks/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/.changepacks/config.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: dev-five-git 4 | -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/__tests__/index.test.ts -------------------------------------------------------------------------------- /apps/landing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/.gitignore -------------------------------------------------------------------------------- /apps/landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/README.md -------------------------------------------------------------------------------- /apps/landing/devup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/devup.json -------------------------------------------------------------------------------- /apps/landing/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/eslint.config.mjs -------------------------------------------------------------------------------- /apps/landing/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/next.config.ts -------------------------------------------------------------------------------- /apps/landing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/package.json -------------------------------------------------------------------------------- /apps/landing/public/2024 개정 한국 점자 규정.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/2024 개정 한국 점자 규정.pdf -------------------------------------------------------------------------------- /apps/landing/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/favicon.svg -------------------------------------------------------------------------------- /apps/landing/public/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/file.svg -------------------------------------------------------------------------------- /apps/landing/public/globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/globe.svg -------------------------------------------------------------------------------- /apps/landing/public/images/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/close.svg -------------------------------------------------------------------------------- /apps/landing/public/images/color-theme-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/color-theme-dark.svg -------------------------------------------------------------------------------- /apps/landing/public/images/color-theme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/color-theme.svg -------------------------------------------------------------------------------- /apps/landing/public/images/discord.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/discord.svg -------------------------------------------------------------------------------- /apps/landing/public/images/docs/menu-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/docs/menu-arrow.svg -------------------------------------------------------------------------------- /apps/landing/public/images/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/github.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/background-braille.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/background-braille.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/button-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/button-arrow.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/finger-point.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/finger-point.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/hero.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/hero.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/texture.png -------------------------------------------------------------------------------- /apps/landing/public/images/home/translate-arrow-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/translate-arrow-circle.svg -------------------------------------------------------------------------------- /apps/landing/public/images/home/translate-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/home/translate-arrow.svg -------------------------------------------------------------------------------- /apps/landing/public/images/kakao.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/kakao.svg -------------------------------------------------------------------------------- /apps/landing/public/images/team/image-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/image-01.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/image-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/image-02.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/image-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/image-03.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/image-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/image-04.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/profile-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/profile-01.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/profile-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/profile-02.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/team/profile-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/team/profile-03.jpg -------------------------------------------------------------------------------- /apps/landing/public/images/test-case/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/test-case/error.svg -------------------------------------------------------------------------------- /apps/landing/public/images/test-case/success.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/images/test-case/success.svg -------------------------------------------------------------------------------- /apps/landing/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/next.svg -------------------------------------------------------------------------------- /apps/landing/public/og-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/og-image.png -------------------------------------------------------------------------------- /apps/landing/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/vercel.svg -------------------------------------------------------------------------------- /apps/landing/public/window.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/public/window.svg -------------------------------------------------------------------------------- /apps/landing/src/app/Trans.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/Trans.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/TransInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/TransInput.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/LeftMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/LeftMenu.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/MenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/MenuItem.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/OpenMenuItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/OpenMenuItem.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/RightIndex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/RightIndex.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/api/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/api/page.mdx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/contributing/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/contributing/page.mdx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/installation/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/installation/page.mdx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/layout.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/docs/overview/page.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/docs/overview/page.mdx -------------------------------------------------------------------------------- /apps/landing/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/page.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/team/page.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/test-case/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/app/test-case/page.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Code.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Code.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Footer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Footer/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/MobileMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/MobileMenu.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/MobileMenuButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/MobileMenuButton.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/MobileMenuProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/MobileMenuProvider.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/Pages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/Pages.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/ThemeSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/ThemeSwitch.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/Header/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/home/PillButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/home/PillButton.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconBraillify.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconBraillify.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconColorTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconColorTheme.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconDiscord.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconDiscord.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconGithub.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconGithub.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconHamburger.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconHamburger.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/icons/IconKakao.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/icons/IconKakao.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/team/TeamMemberCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/team/TeamMemberCard.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/FailedOnlyInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/FailedOnlyInput.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseCircle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseCircle.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseDisplayBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseDisplayBoundary.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseFilterContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseFilterContainer.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseProvider.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseRuleContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseRuleContainer.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseStat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseStat.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/TestCaseTypeToggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/TestCaseTypeToggle.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/Tooltip.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/filter/TestCaseFilter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/filter/TestCaseFilter.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/list/TestCaseList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/list/TestCaseList.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/table/TestCaseTable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/table/TestCaseTable.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/test-case/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/components/test-case/table/index.tsx -------------------------------------------------------------------------------- /apps/landing/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/constants/index.ts -------------------------------------------------------------------------------- /apps/landing/src/hooks/useIntersectionObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/hooks/useIntersectionObserver.ts -------------------------------------------------------------------------------- /apps/landing/src/mdx-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/mdx-components.tsx -------------------------------------------------------------------------------- /apps/landing/src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/src/types/index.ts -------------------------------------------------------------------------------- /apps/landing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/apps/landing/tsconfig.json -------------------------------------------------------------------------------- /braillove-case-collector/.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | -------------------------------------------------------------------------------- /braillove-case-collector/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /braillove-case-collector/README.md: -------------------------------------------------------------------------------- 1 | # 점사랑 케이스 생성기 2 | -------------------------------------------------------------------------------- /braillove-case-collector/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/converter.py -------------------------------------------------------------------------------- /braillove-case-collector/input.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/input.csv -------------------------------------------------------------------------------- /braillove-case-collector/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/main.py -------------------------------------------------------------------------------- /braillove-case-collector/output.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/output.csv -------------------------------------------------------------------------------- /braillove-case-collector/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/pyproject.toml -------------------------------------------------------------------------------- /braillove-case-collector/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/braillove-case-collector/uv.lock -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/bun.lock -------------------------------------------------------------------------------- /docs/2024 개정 한국 점자 규정.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/docs/2024 개정 한국 점자 규정.pdf -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /libs/braillify/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/Cargo.toml -------------------------------------------------------------------------------- /libs/braillify/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/build.rs -------------------------------------------------------------------------------- /libs/braillify/src/char_shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/char_shortcut.rs -------------------------------------------------------------------------------- /libs/braillify/src/char_struct.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/char_struct.rs -------------------------------------------------------------------------------- /libs/braillify/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/cli.rs -------------------------------------------------------------------------------- /libs/braillify/src/english.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/english.rs -------------------------------------------------------------------------------- /libs/braillify/src/english_logic.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/english_logic.rs -------------------------------------------------------------------------------- /libs/braillify/src/fraction.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/fraction.rs -------------------------------------------------------------------------------- /libs/braillify/src/jauem/choseong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/jauem/choseong.rs -------------------------------------------------------------------------------- /libs/braillify/src/jauem/jongseong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/jauem/jongseong.rs -------------------------------------------------------------------------------- /libs/braillify/src/jauem/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/jauem/mod.rs -------------------------------------------------------------------------------- /libs/braillify/src/korean_char.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/korean_char.rs -------------------------------------------------------------------------------- /libs/braillify/src/korean_part.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/korean_part.rs -------------------------------------------------------------------------------- /libs/braillify/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/lib.rs -------------------------------------------------------------------------------- /libs/braillify/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/main.rs -------------------------------------------------------------------------------- /libs/braillify/src/math_symbol_shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/math_symbol_shortcut.rs -------------------------------------------------------------------------------- /libs/braillify/src/moeum/jungsong.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/moeum/jungsong.rs -------------------------------------------------------------------------------- /libs/braillify/src/moeum/mod.rs: -------------------------------------------------------------------------------- 1 | pub mod jungsong; 2 | -------------------------------------------------------------------------------- /libs/braillify/src/number.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/number.rs -------------------------------------------------------------------------------- /libs/braillify/src/rule.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/rule.rs -------------------------------------------------------------------------------- /libs/braillify/src/rule_en.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/rule_en.rs -------------------------------------------------------------------------------- /libs/braillify/src/split.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/split.rs -------------------------------------------------------------------------------- /libs/braillify/src/symbol_shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/symbol_shortcut.rs -------------------------------------------------------------------------------- /libs/braillify/src/unicode.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/unicode.rs -------------------------------------------------------------------------------- /libs/braillify/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/utils.rs -------------------------------------------------------------------------------- /libs/braillify/src/word_shortcut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/libs/braillify/src/word_shortcut.rs -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/media/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/package.json -------------------------------------------------------------------------------- /packages/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/.gitignore -------------------------------------------------------------------------------- /packages/node/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/CHANGELOG.md -------------------------------------------------------------------------------- /packages/node/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/Cargo.toml -------------------------------------------------------------------------------- /packages/node/LICENSE_APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/LICENSE_APACHE -------------------------------------------------------------------------------- /packages/node/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/README.md -------------------------------------------------------------------------------- /packages/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/package.json -------------------------------------------------------------------------------- /packages/node/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/pnpm-lock.yaml -------------------------------------------------------------------------------- /packages/node/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/src/lib.rs -------------------------------------------------------------------------------- /packages/node/src/utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/src/utils.rs -------------------------------------------------------------------------------- /packages/node/tests/web.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/node/tests/web.rs -------------------------------------------------------------------------------- /packages/python/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/.gitignore -------------------------------------------------------------------------------- /packages/python/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/Cargo.toml -------------------------------------------------------------------------------- /packages/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/README.md -------------------------------------------------------------------------------- /packages/python/braillify.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/braillify.pyi -------------------------------------------------------------------------------- /packages/python/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/pyproject.toml -------------------------------------------------------------------------------- /packages/python/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/packages/python/src/lib.rs -------------------------------------------------------------------------------- /py-test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/py-test/__init__.py -------------------------------------------------------------------------------- /py-test/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/py-test/pyproject.toml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rule_map.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/rule_map.json -------------------------------------------------------------------------------- /test_case_inputs/rule_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_1.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_10.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_11.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_11_b1.csv: -------------------------------------------------------------------------------- 1 | 추사 김정희는 유명한 서 2 | 예가입니다. -------------------------------------------------------------------------------- /test_case_inputs/rule_12.csv: -------------------------------------------------------------------------------- 1 | 야애 2 | 소화액 3 | 수액 4 | 파워앰프 -------------------------------------------------------------------------------- /test_case_inputs/rule_12_b1.csv: -------------------------------------------------------------------------------- 1 | 침, 쓸개즙 등의 소화 2 | 액은 소화 효소를 가지고 있다. -------------------------------------------------------------------------------- /test_case_inputs/rule_13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_13.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_14.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_14_b1.csv: -------------------------------------------------------------------------------- 1 | 철수는 여름 방학을 맞아 바위섬으로 놀러 갔다 -------------------------------------------------------------------------------- /test_case_inputs/rule_15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_15.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_16.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_17.csv: -------------------------------------------------------------------------------- 1 | 성가 2 | 말썽 3 | 정성 4 | 어정쩡 5 | 청년 6 | 얄라셩 -------------------------------------------------------------------------------- /test_case_inputs/rule_18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_18.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_18_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_18_b1.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_1_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_1_b1.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_2.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_28.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_29.csv: -------------------------------------------------------------------------------- 1 | 그는 Canada로 여행을 떠났다. 2 | 그녀는 Los Angeles의 한인 타운에 살고 있다. 3 | Table of Contents 4 | -------------------------------------------------------------------------------- /test_case_inputs/rule_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_3.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_4.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_40.csv: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | 8 9 | 9 10 | 0 -------------------------------------------------------------------------------- /test_case_inputs/rule_41.csv: -------------------------------------------------------------------------------- 1 | 9,375명 2 | 5,700,000원 3 | 창세기 12,1-9 -------------------------------------------------------------------------------- /test_case_inputs/rule_42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_42.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_43.csv: -------------------------------------------------------------------------------- 1 | 0.48 2 | 1,000 3 | 1,234,567 -------------------------------------------------------------------------------- /test_case_inputs/rule_43_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_43_b1.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_44.csv: -------------------------------------------------------------------------------- 1 | 1가 2 | 2권 3 | 3반 4 | 4선 5 | 5월 6 | 6일 7 | 7자루 8 | 8꾸러미 9 | 5 개 10 | 8 상자 -------------------------------------------------------------------------------- /test_case_inputs/rule_44_b1.csv: -------------------------------------------------------------------------------- 1 | 1년 2 | 2도 3 | 3명 4 | 4칸 5 | 5톤 6 | 6평 7 | 7항 8 | 5운6기 -------------------------------------------------------------------------------- /test_case_inputs/rule_45.csv: -------------------------------------------------------------------------------- 1 | + 2 | − 3 | × 4 | ÷ 5 | = 6 | > 7 | < -------------------------------------------------------------------------------- /test_case_inputs/rule_46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_46.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_5.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_6.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_7.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_8.csv -------------------------------------------------------------------------------- /test_case_inputs/rule_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/rule_9.csv -------------------------------------------------------------------------------- /test_case_inputs/sentence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_case_inputs/sentence.csv -------------------------------------------------------------------------------- /test_cases/rule_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_1.csv -------------------------------------------------------------------------------- /test_cases/rule_10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_10.csv -------------------------------------------------------------------------------- /test_cases/rule_11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_11.csv -------------------------------------------------------------------------------- /test_cases/rule_11_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_11_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_12.csv -------------------------------------------------------------------------------- /test_cases/rule_12_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_12_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_13.csv -------------------------------------------------------------------------------- /test_cases/rule_14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_14.csv -------------------------------------------------------------------------------- /test_cases/rule_14_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_14_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_15.csv -------------------------------------------------------------------------------- /test_cases/rule_16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_16.csv -------------------------------------------------------------------------------- /test_cases/rule_17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_17.csv -------------------------------------------------------------------------------- /test_cases/rule_18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_18.csv -------------------------------------------------------------------------------- /test_cases/rule_18_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_18_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_1_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_1_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_2.csv -------------------------------------------------------------------------------- /test_cases/rule_28.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_28.csv -------------------------------------------------------------------------------- /test_cases/rule_29.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_29.csv -------------------------------------------------------------------------------- /test_cases/rule_3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_3.csv -------------------------------------------------------------------------------- /test_cases/rule_32.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_32.csv -------------------------------------------------------------------------------- /test_cases/rule_33.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_33.csv -------------------------------------------------------------------------------- /test_cases/rule_33_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_33_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_34.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_34.csv -------------------------------------------------------------------------------- /test_cases/rule_35.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_35.csv -------------------------------------------------------------------------------- /test_cases/rule_4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_4.csv -------------------------------------------------------------------------------- /test_cases/rule_40.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_40.csv -------------------------------------------------------------------------------- /test_cases/rule_41.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_41.csv -------------------------------------------------------------------------------- /test_cases/rule_42.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_42.csv -------------------------------------------------------------------------------- /test_cases/rule_43.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_43.csv -------------------------------------------------------------------------------- /test_cases/rule_43_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_43_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_44.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_44.csv -------------------------------------------------------------------------------- /test_cases/rule_44_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_44_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_45.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_45.csv -------------------------------------------------------------------------------- /test_cases/rule_46.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_46.csv -------------------------------------------------------------------------------- /test_cases/rule_47.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_47.csv -------------------------------------------------------------------------------- /test_cases/rule_48.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_48.csv -------------------------------------------------------------------------------- /test_cases/rule_49.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_49.csv -------------------------------------------------------------------------------- /test_cases/rule_5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_5.csv -------------------------------------------------------------------------------- /test_cases/rule_50.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_50.csv -------------------------------------------------------------------------------- /test_cases/rule_51.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_51.csv -------------------------------------------------------------------------------- /test_cases/rule_51_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_51_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_51_b2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_51_b2.csv -------------------------------------------------------------------------------- /test_cases/rule_52.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_52.csv -------------------------------------------------------------------------------- /test_cases/rule_53.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_53.csv -------------------------------------------------------------------------------- /test_cases/rule_53_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_53_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_54.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_54.csv -------------------------------------------------------------------------------- /test_cases/rule_55.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_55.csv -------------------------------------------------------------------------------- /test_cases/rule_55_b1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_55_b1.csv -------------------------------------------------------------------------------- /test_cases/rule_56.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_56.csv -------------------------------------------------------------------------------- /test_cases/rule_57.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_57.csv -------------------------------------------------------------------------------- /test_cases/rule_58.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_58.csv -------------------------------------------------------------------------------- /test_cases/rule_59.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_59.csv -------------------------------------------------------------------------------- /test_cases/rule_6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_6.csv -------------------------------------------------------------------------------- /test_cases/rule_60.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_60.csv -------------------------------------------------------------------------------- /test_cases/rule_61.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_61.csv -------------------------------------------------------------------------------- /test_cases/rule_62.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_62.csv -------------------------------------------------------------------------------- /test_cases/rule_63.csv: -------------------------------------------------------------------------------- 1 | 밤ː나무,"^5,'cem",243432491713,⠘⠢⠠⠄⠉⠑⠍ 2 | -------------------------------------------------------------------------------- /test_cases/rule_7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_7.csv -------------------------------------------------------------------------------- /test_cases/rule_8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_8.csv -------------------------------------------------------------------------------- /test_cases/rule_9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/rule_9.csv -------------------------------------------------------------------------------- /test_cases/sentence.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/test_cases/sentence.csv -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/uv.lock -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dev-five-git/braillify/HEAD/vitest.config.ts --------------------------------------------------------------------------------