Skip to content

Commit d7ae664

Browse files
author
Sabbir Ahmed
authored
Merge pull request #721 from mah-shamim/mah-shamim-yaml-cheat-sheet
Mah shamim yaml cheat sheet
2 parents 4630251 + c0cbfc4 commit d7ae664

1 file changed

Lines changed: 40 additions & 0 deletions

File tree

data/yaml.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"id": "yaml",
3+
"title": "ওয়াই এ এম এল",
4+
"slug": "yaml",
5+
"description": "YAML/ওয়াই এ এম এল (/ˈjæməl/ এবং YAH-ml) (দেখুন § ইতিহাস এবং নাম) একটি মানব-পাঠযোগ্য ডেটা-ক্রমিক ভাষা।",
6+
"colorPref": "#745fb5",
7+
"contents": [
8+
{
9+
"title": "মাল্টিলাইন স্ট্রিং (Multiline strings)",
10+
"items": [
11+
{
12+
"code": "\n\nMultiline: |\n hello\n world\n\n"
13+
}
14+
]
15+
},
16+
{
17+
"title": "রেফারেন্স বিষয়বস্তু (Reference content)",
18+
"items": [
19+
{
20+
"code": "values: &ref",
21+
"definition": "- এই মানগুলি\n- নীচে পুনরায় ব্যবহার করা হবে।"
22+
},
23+
{
24+
"code": "other_values:\n <<: *ref"
25+
}
26+
]
27+
},
28+
{
29+
"title": "উত্তরাধিকার (Inheritance)",
30+
"items": [
31+
{
32+
"code": "parent: &defaults\n a: 2\n b: 3"
33+
},
34+
{
35+
"code": "child:\n <<: *defaults\n b: 4"
36+
}
37+
]
38+
}
39+
]
40+
}

0 commit comments

Comments
 (0)