🧹 Move head metadata into front matter - #2732
Open
JFWooten4 wants to merge 3 commits into
Open
Conversation
Co-authored-by: Codex <noreply@openai.com>
Co-authored-by: Codex <noreply@openai.com>
Co-authored-by: Codex <noreply@openai.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Moves SEO titles and descriptions from inline <head> blocks into MDX front matter while preserving sidebar labels.
Changes:
- Removes redundant inline metadata.
- Adds descriptive page titles and front-matter descriptions.
- Preserves existing sidebar navigation labels.
Recommendation: NEEDS-CHANGES — correct the token standard, stale event API description, and incomplete SDK scope description.
Reviewed changes
Copilot reviewed 43 out of 43 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
docs/learn/fundamentals/contract-development/types/fully-typed-contracts.mdx |
Moves interface metadata to front matter. |
docs/learn/fundamentals/contract-development/types/custom-types.mdx |
Updates custom-type metadata. |
docs/learn/fundamentals/contract-development/types/built-in-types.mdx |
Updates built-in-type metadata. |
docs/learn/fundamentals/contract-development/storage/state-archival.mdx |
Updates archival metadata. |
docs/learn/fundamentals/contract-development/storage/persisting-data.mdx |
Updates storage metadata. |
docs/learn/fundamentals/contract-development/errors-and-debugging/errors.mdx |
Updates error-generation metadata. |
docs/learn/fundamentals/contract-development/errors-and-debugging/debugging.mdx |
Updates debugging metadata. |
docs/learn/fundamentals/contract-development/environment-concepts.mdx |
Updates environment metadata. |
docs/learn/fundamentals/contract-development/contract-lifecycle.mdx |
Updates lifecycle metadata. |
docs/learn/fundamentals/contract-development/contract-interactions/stellar-transaction.mdx |
Updates transaction metadata. |
docs/learn/fundamentals/contract-development/contract-interactions/overview.mdx |
Updates interaction overview metadata. |
docs/build/smart-contracts/example-contracts/upgradeable-contract.mdx |
Updates upgrade example metadata. |
docs/build/smart-contracts/example-contracts/tokens.mdx |
Updates token example metadata. |
docs/build/smart-contracts/example-contracts/timelock.mdx |
Updates timelock metadata. |
docs/build/smart-contracts/example-contracts/storage.mdx |
Updates storage example metadata. |
docs/build/smart-contracts/example-contracts/single-offer-sale.mdx |
Updates sale example metadata. |
docs/build/smart-contracts/example-contracts/simple-account.mdx |
Moves account description to front matter. |
docs/build/smart-contracts/example-contracts/mint-lock.mdx |
Updates mint-lock metadata. |
docs/build/smart-contracts/example-contracts/logging.mdx |
Updates logging metadata. |
docs/build/smart-contracts/example-contracts/liquidity-pool.mdx |
Updates liquidity-pool metadata. |
docs/build/smart-contracts/example-contracts/fuzzing.mdx |
Updates fuzz-testing metadata. |
docs/build/smart-contracts/example-contracts/events.mdx |
Updates event metadata. |
docs/build/smart-contracts/example-contracts/errors.mdx |
Updates error example metadata. |
docs/build/smart-contracts/example-contracts/deployer.mdx |
Updates deployment metadata. |
docs/build/smart-contracts/example-contracts/delegate-auth.mdx |
Moves CAP-71 description to front matter. |
docs/build/smart-contracts/example-contracts/custom-types.mdx |
Updates data-structure metadata. |
docs/build/smart-contracts/example-contracts/cross-contract-call.mdx |
Updates cross-contract metadata. |
docs/build/smart-contracts/example-contracts/complex-account.mdx |
Updates account-policy metadata. |
docs/build/smart-contracts/example-contracts/bls-signature.mdx |
Moves BLS description to front matter. |
docs/build/smart-contracts/example-contracts/auth.mdx |
Updates authorization metadata. |
docs/build/smart-contracts/example-contracts/atomic-swap.mdx |
Updates atomic-swap metadata. |
docs/build/smart-contracts/example-contracts/atomic-multi-swap.mdx |
Updates batched-swap metadata. |
docs/build/smart-contracts/example-contracts/alloc.mdx |
Updates allocator metadata. |
docs/build/guides/transactions/upload-wasm-bytecode.mdx |
Updates Wasm installation metadata. |
docs/build/guides/transactions/install-deploy-contract-with-code.mdx |
Updates deployment-guide metadata. |
docs/build/guides/tokens/deploying-a-sac.mdx |
Updates SAC deployment metadata. |
docs/build/guides/dapps/soroban-contract-init-template.mdx |
Updates template-guide metadata. |
docs/build/guides/conventions/wasm-metadata.mdx |
Updates contract-metadata page metadata. |
docs/build/guides/conventions/upgrading-contracts.mdx |
Updates upgrade-guide metadata. |
docs/build/guides/conventions/deploy-sac-with-code.mdx |
Updates coded SAC deployment metadata. |
docs/build/guides/conventions/deploy-contract.mdx |
Updates deployer-contract metadata. |
docs/build/guides/basics/automate-reset-data.mdx |
Updates reset-automation metadata. |
docs/build/guides/auth/check-auth-tutorials.mdx |
Updates authorization tutorial metadata. |
| --- | ||
| title: Tokens | ||
| description: Write a CAP-46-6 compliant token contract. | ||
| title: CAP-46-6-Compliant Token Contract |
| description: Publish events from a smart contract. | ||
| title: Smart Contract Events | ||
| sidebar_label: "Events" | ||
| description: Publish events from a smart contract. Contract events let contracts emit information about what the contract is doing using the environment events publish function. |
| description: Upload the Wasm of the contract using js-stellar-sdk. | ||
| title: WebAssembly (Wasm) Bytecode Installation Using Code | ||
| sidebar_label: "Upload WebAssembly (Wasm) bytecode using code" | ||
| description: This guide will walk you through installing the wasm of the contract using js-stellar-sdk. |
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.
from #2234