Document the R SDK#5
Merged
Merged
Conversation
Document the new R language SDK alongside the other SDKs: - sdks/r.md: dedicated R SDK page (install via remotes::install_github with subdir = 'r', not on CRAN, usage snippet, JSONSTRUCTURE_LIB_PATH note) - _layouts/sdk-index.html: add R to the sidebar nav and an R SDK card - index.md: add an R row to the SDKs table Companion to json-structure/sdk#177. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
clemensv
added a commit
that referenced
this pull request
Jul 14, 2026
PR #5 added the R SDK page, homepage table row, and the SDK-index layout card, but missed the persistent SDK sidebar nav in the default layout that appears on every page. Add the R link after Ruby to match the ordering used elsewhere. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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.
Summary
Adds documentation for the new R language SDK to the project website, alongside the other SDKs.
Changes
sdks/r.md— a dedicated R SDK page: installation viaremotes::install_github("json-structure/sdk", subdir = "r"), a note that it is intentionally not on CRAN (it downloads a prebuilt native library at first use), a usage snippet (js_validate_schema,js_validate_instance,is_valid), the feature list (binds the native C engine via a compiled shim, downloads the prebuilt library,JSONSTRUCTURE_LIB_PATHoverride), and a link to the package README._layouts/sdk-index.html— adds R to the SDK sidebar navigation and a matching R SDK card in the grid.index.md— adds an R row to the## SDKstable.Related
Companion to the SDK implementation PR: json-structure/sdk#177. Merge that first so the
remotes::install_github(... subdir = "r")instructions and the GitHub links resolve.Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com