Skip to content
Open
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
20 changes: 9 additions & 11 deletions advanced/content-package-template/card/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,18 +108,16 @@ The .properties files should use suffix below and be UTF-8 encoded.
- Minimal manifest.json example with mandatory fields only:

```json

{
"sap.app": {
"type": "card",
"title": "Card Title";
"applicationVersion": {
"version": "1.0.0"
}

},
"sap.card": {},
"_version": "1.0",
"sap.app": {
"type": "card",
"title": "Card Title",
"applicationVersion": {
"version": "1.0.0"
}
},
"sap.card": {},
"_version": "1.0"
}
```

Expand Down
20 changes: 9 additions & 11 deletions standard/content-package-template/docs/cards/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,18 +126,16 @@ https://sapui5.hana.ondemand.com/test-resources/sap/ui/integration/demokit/cardE
- Minimal manifest.json example with mandatory fields only:

```json

{
"sap.app": {
"type": "card",
"title": "Card Title";
"applicationVersion": {
"version": "1.0.0"
}

},
"sap.card": {},
"_version": "1.0",
"sap.app": {
"type": "card",
"title": "Card Title",
"applicationVersion": {
"version": "1.0.0"
}
},
"sap.card": {},
"_version": "1.0"
}
```

Expand Down