README.md: Fix MD040 warnings
The following warnings are generated by using markdownlint analysis:
```
MD040/fenced-code-language Fenced code blocks should have a language specified [Context: "```"]
```
Refer to markdown-lint [1] to fix MD040
[1]: https://github.com/updownpress/markdown-lint/blob/master/rules/040-fenced-code-language.md
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
Change-Id: I7a9b9851a17919c8cb650fdbd5b8e9eda2faac36
diff --git a/README.md b/README.md
index 93ee8af..ada629e 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,7 @@
This is our configuration file. It describes 2 LEDs for the
'_enclosure_identify_' group, with their respective states and duty cycles.
-```
-$ cat example.json
+```json
{
"leds": [
{
@@ -44,7 +43,7 @@
Then start the program with
-```
+```text
$ ./phosphor-led-manager --config example.json
```
@@ -53,7 +52,7 @@
When starting the program, our LED group shows up on dbus. Usually there will be
many more groups.
-```
+```text
$ busctl tree xyz.openbmc_project.LED.GroupManager
`- /xyz
`- /xyz/openbmc_project
@@ -74,7 +73,7 @@
We can now drive the entire group by setting it's 'Asserted' property on dbus.
-```
+```text
$ busctl set-property \
xyz.openbmc_project.LED.GroupManager \
/xyz/openbmc_project/led/groups/enclosure_identify \
@@ -86,7 +85,7 @@
## How to Build
-```
+```text
meson setup build
cd build
ninja