Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 36 additions & 1 deletion apps/landing/src/app/docs/api/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const metadata = {

<br />

Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust를 지원합니다.
Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust, .NET을 지원합니다.

모든 함수는 표현 방식만 다를 뿐 사용법과 함수명은 같습니다.

Expand Down Expand Up @@ -55,6 +55,17 @@ Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust를 지원합니다
>
Rust 함수
</th>
<th
style={{
padding: '12px',
textAlign: 'left',
borderBottom: '2px solid #ddd',
backgroundColor: 'var(--containerBackground)',
color: 'var(--text)',
}}
>
C# 함수
</th>
<th
style={{
padding: '12px',
Expand All @@ -78,6 +89,14 @@ Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust를 지원합니다
>
encode
</td>
<td
style={{
padding: '12px',
borderBottom: '1px solid #ddd',
}}
>
Encode
</td>
<td
style={{
padding: '12px',
Expand Down Expand Up @@ -128,6 +147,14 @@ Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust를 지원합니다
>
encode_to_unicode
</td>
<td
style={{
padding: '12px',
borderBottom: '1px solid #ddd',
}}
>
EncodeToUnicode
</td>
<td
style={{
padding: '12px',
Expand Down Expand Up @@ -162,6 +189,14 @@ Braillify 는 Node.js(Wasm for Web) 와 Python 그리고 Rust를 지원합니다
>
encode_to_braille_font
</td>
<td
style={{
padding: '12px',
borderBottom: '1px solid #ddd',
}}
>
EncodeToBrailleFont
</td>
<td
style={{
padding: '12px',
Expand Down
7 changes: 6 additions & 1 deletion apps/landing/src/app/docs/installation/page.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export const metadata = {

<br />

Braillify 는 Node.js(Wasm for Web) 와 Python 환경을 지원합니다.
Braillify 는 Node.js(Wasm for Web) 와 Python, Rust, .NET 환경을 지원합니다.

표준 저장소에 배포되었기 때문에 모든 패키지 매니저로 다운받을 수 있습니다.

Expand All @@ -27,3 +27,8 @@ Braillify 는 Node.js(Wasm for Web) 와 Python 환경을 지원합니다.
## Cargo
<br />
```bash cargo add braillify # cargo ```

<br />
## .NET
<br />
```bash dotnet add package BraillifyNet # dotnet ```
Loading