Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
/docs/**/readme.md
/static/sb-alg-list.json
/docs/trustmark/*.md
/docs/trustmark/c2pa/*.md
/docs/trustmark/js/*.md
/docs/trustmark/python/*.md

# Misc
.DS_Store
Expand Down
2 changes: 1 addition & 1 deletion docs/trustmark-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@ hide_table_of_contents: true
- [Is TrustMark compatible with blockchain technology?](#is-trustmark-compatible-with-blockchain-technology)
- [Can TrustMark be used for NFT provenance?](#can-trustmark-be-used-for-nft-provenance)

import Faq from './trustmark/faq.md';
import Faq from './trustmark/FAQ.md';

<Faq name="faq" />
Empty file added docs/trustmark/c2pa/.gitkeep
Empty file.
Empty file added docs/trustmark/js/.gitkeep
Empty file.
Empty file added docs/trustmark/python/.gitkeep
Empty file.
14 changes: 7 additions & 7 deletions scripts/fetch-readme.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,27 +196,27 @@ const readmes = [
},
// TrustMark
{
dest: resolve(__dirname, '../docs/trustmark/readme.md'),
dest: resolve(__dirname, '../docs/trustmark/README.md'),
repo: 'adobe/trustmark',
path: 'README.md',
},
{
dest: resolve(__dirname, '../docs/trustmark/config.md'),
dest: resolve(__dirname, '../docs/trustmark/python/CONFIG.md'),
repo: 'adobe/trustmark',
path: 'CONFIG.md',
path: 'python/CONFIG.md',
},
{
dest: resolve(__dirname, '../docs/trustmark/faq.md'),
dest: resolve(__dirname, '../docs/trustmark/FAQ.md'),
repo: 'adobe/trustmark',
path: 'FAQ.md',
},
{
dest: resolve(__dirname, '../docs/trustmark/python-readme.md'),
dest: resolve(__dirname, '../docs/trustmark/c2pa/README.md'),
repo: 'adobe/trustmark',
path: 'python/README.md',
path: 'c2pa/README.md',
},
{
dest: resolve(__dirname, '../docs/trustmark/js-readme.md'),
dest: resolve(__dirname, '../docs/trustmark/js/README.md'),
repo: 'adobe/trustmark',
path: 'js/README.md',
},
Expand Down
11 changes: 8 additions & 3 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -277,22 +277,27 @@ const sidebars = {
items: [
{
type: 'doc',
id: 'trustmark/readme',
id: 'trustmark/README',
label: 'Overview',
},
{
type: 'doc',
id: 'trustmark/config',
id: 'trustmark/python/CONFIG',
label: 'Configuration',
},
{
type: 'doc',
id: 'trustmark/c2pa/README',
label: 'Using with C2PA',
},
{
type: 'doc',
id: 'tm-faq',
label: 'FAQ',
},
{
type: 'doc',
id: 'trustmark/js-readme',
id: 'trustmark/js/README',
label: 'JavaScript example',
},
{
Expand Down