Skip to content

Commit

Permalink
docs: hi language
Browse files Browse the repository at this point in the history
  • Loading branch information
Chunjee authored Jun 8, 2024
1 parent e54ddcd commit 098be4d
Show file tree
Hide file tree
Showing 6 changed files with 859 additions and 12 deletions.
23 changes: 12 additions & 11 deletions docs/_navbar.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
- Translations
- [:us: English](/docs)
- [:jp: 日本語](/ja/docs)
- [:de: Deutsch](/de/docs)
- [:es: Español](/es/docs)
- [:fr: Français](/fr/docs)
- [:it: Italiano](/it/docs)
- [:kr: 한국어](/ko/docs)
- [:norway: Nederlands](/nl/docs)
- [:portugal: Português](/pt/docs)
- [:ru: Русский](/ru/docs)
- [:cn: 中文](/zh/docs)
- [:us: English](/)
- [:jp: 日本語](/ja/)
- [:de: Deutsch](/de/)
- [:es: Español](/es/)
- [:fr: Français](/fr/)
- [:india: हिन्दी](/hi/)
- [:it: Italiano](/fr/)
- [:kr: 한국어](/ko/)
- [:norway: Nederlands](/nl/)
- [:portugal: Português](/pt/)
- [:ru: Русский](/ru/)
- [:cn: 中文](/zh/)
3 changes: 3 additions & 0 deletions docs/hi/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- [Home](/hi/README)

- [Documentation](/hi/docs)
47 changes: 47 additions & 0 deletions docs/hi/blogpost.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[img]https://i.imgur.com/ctnXAiX.png[/img]

[url=https://www.npmjs.com/package/biga.ahk][img]https://img.shields.io/npm/v/biga.ahk?style=for-the-badge&logo=npm[/img][/url] [url=https://www.npmjs.com/package/biga.ahk][img]https://img.shields.io/npm/dm/biga.ahk?style=for-the-badge[/img][/url] [url=https://github.com/biga-ahk/biga.ahk][img]https://img.shields.io/badge/source-code-red?style=for-the-badge&logo=github[/img][/url] [url=https://biga-ahk.github.io/biga.ahk][img]https://img.shields.io/badge/full-documentation-blue?style=for-the-badge[/img][/url] [url=https://github.com/biga-ahk/biga.ahk/blob/master/LICENSE][img]https://img.shields.io/npm/l/biga.ahk?color=tan&style=for-the-badge[/img][/url]





[hr]

[size=200][/size]


[code=bash]
npm install biga.ahk
[/code]



[code=autohotkey]
#Include %A_ScriptDir%\node_modules
#Include biga.ahk\export.ahk
A := new biga()
msgbox, % A.join(["a", "b", "c"], " ")
; => "a b c"
[/code]



[size=200]API[/size]


[code=autohotkey]
A := new biga()
wordsArray := A.words("This could be real real useful")
; => ["This", "could", "be", "real, "real", "useful"]
msgbox, % wordsArray.Count()
; => 6
uniqWords := A.uniq(wordsArray)
; => ["This", "could", "be", "real", "useful"]
msgbox, % A.join(uniqWords, " ")
; => "This could be real useful"
[/code]
: https://github.com/biga-ahk/biga.ahk/tree/master/examples

[size=200][/size]
https://biga-ahk.github.io/biga.ahk
Loading

0 comments on commit 098be4d

Please sign in to comment.