generated from obsidianmd/obsidian-sample-plugin
-
-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Bolly Life Provider to support more translation/versions (#22)
* update readme * add a sub module for bible book name to number * [fact] move main.ts to make root folder cleaner * [fact] make provider abstract - to be ready for bolls.life api * [fact] clean up * [fact] update picture location * [feat] add bolly life provider - problem CORS * [feat] add bolly life provider through new bff of bible api * [fix] no more hard coding url * [doc] update readme and add notice in ui setting * [feat] add more version/translations * [doc] add more ui notification
- Loading branch information
Showing
25 changed files
with
398 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,3 +17,4 @@ data.json | |
|
||
# Exclude macOS Finder (System Explorer) View States | ||
.DS_Store | ||
.eslintignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "biblejs-name-converter"] | ||
path = biblejs-name-converter | ||
url = https://github.com/tim-hub/biblejs-name-converter.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
- Taking Bible Study note in Obsidian.md application easily. | ||
- Automatically suggesting Bible Verses as references. | ||
|
||
![obsidian bible reference demo](https://raw.githubusercontent.com/tim-hub/obsidian-bible-reference/master/demo/obsidian-bible-reference-demo.gif) | ||
![obsidian bible reference demo](https://raw.githubusercontent.com/tim-hub/obsidian-bible-reference/master/docs/obsidian-bible-reference-demo.gif) | ||
|
||
## How to use | ||
1. Open a note in Obsidian.md application | ||
|
@@ -27,19 +27,26 @@ | |
3. Select the version you want to use | ||
|
||
## The Bible API and Bible Source | ||
- This plugin Bible Verse Query Functionality is currently powered by [bible-api.com](https://bible-api.com/). | ||
This plugin Bible Verse Query Functionality is currently powered by | ||
- [bible-api.com](https://bible-api.com/) | ||
- It is an open source web api that provides a RESTful API for grabbing bible verses and passages. | ||
- [bolls life bible API](https://bolls.life/api/) | ||
- It supports more languages and versions, and it has a WEB UI for bible reading as well. | ||
> The back-end API might be changed in the future to support more languages and versions. | ||
### Bible Version Avalable | ||
- **KJV**: King James Version | ||
- **Cherokee**: Cherokee New Testament | ||
- **BBE**: Bible in Basic English | ||
- **WEB**: World English Bible | ||
- **OEB**: Open English Bible | ||
- **Clementine**: Clementine Latin Vulgate | ||
- **Almeida**: João Ferreira de Almeida | ||
- **RCCV**: Romanian Corrected Cornilescu Version | ||
- BibleAPI.com | ||
- **KJV**: King James Version | ||
- **Cherokee**: Cherokee New Testament | ||
- **BBE**: Bible in Basic English | ||
- **WEB**: World English Bible | ||
- **OEB**: Open English Bible | ||
- **Clementine**: Clementine Latin Vulgate | ||
- **Almeida**: João Ferreira de Almeida | ||
- **RCCV**: Romanian Corrected Cornilescu Version | ||
- **NIV**: New International Version, 1984 (Bolls Life) | ||
- **NKJV**: New King James Version (Bolls Life) | ||
- | ||
|
||
|
||
## Contact, Discussion, and Support | ||
|
@@ -50,6 +57,7 @@ | |
|
||
## Credits | ||
|
||
| Name | Github Username | Note | | ||
| :--- | :-----: | ----------- | | ||
| Tim Morgan | @seven1m | for the open source bible-api project and the maintenance of bible-api.com. | | ||
| Name | Github Username | Note | | ||
|:---------------|:--------------------------------------------:|-----------------------------------------------------------------------------| | ||
| Tim Morgan | [@seven1m](https://github.com/seven1m) | For the open source bible-api project and the maintenance of bible-api.com. | | ||
| Bolls Life API | [@bpavlisinec](mailto:[email protected]) | For the free public bible API.| |
Submodule biblejs-name-converter
added at
fecced
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
export const BibleAPISourceCollection = { | ||
bibleApi: { | ||
name: 'Bible API', | ||
apiUrl: 'https://bible-api.com', | ||
}, | ||
bollsLife: { | ||
name: 'Bolls Life', | ||
apiUrl: 'https://bible-api-bff.bai.uno/bolls-life', // 'https://bolls.life', | ||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.