docs: Add comprehensive Docusaurus documentation site#165
Open
teyouale wants to merge 9 commits into
Open
Conversation
added 3 commits
May 13, 2026 10:12
- Add complete documentation structure with guides, concepts, and recipes - Add Algolia search configuration
CarstenLeue
requested changes
May 15, 2026
CarstenLeue
left a comment
Collaborator
There was a problem hiding this comment.
I have two main points:
- the build output should go to the
gh-pagesbranch - the examples should NOT be part of the markdown files, but rather go examples pulled into the markdown at build time
|
|
||
| <CodeCard file="processUser.go" status="tested"> | ||
| {`// fp-go v2 approach | ||
| func processUser(id string) ioresult.IOResult[User] { |
Collaborator
There was a problem hiding this comment.
Should be
func processUser() readerioresult.ReaderIOResult[string, *User] {
return function.Flow3(
fetchUser,
ioresult.Chain(validateUser),
ioresult.Chain(saveUser),
)
}| "github.com/IBM/fp-go/v2/function" | ||
| ) | ||
|
|
||
| func processUser(id string) result.Result[User] { |
Collaborator
There was a problem hiding this comment.
The example should be
func processUser() readerresult.ReaderResult[string, User] {
return function.Flow4(
fetchUser,
result.Chain(validateUser),
result.Chain(enrichUser),
result.Chain(saveUser),
)
}
added 6 commits
May 27, 2026 17:28
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
https://teyouale.github.io/fp-go/docs/concepts/monads/