Skip to content

Commit 0a78eaa

Browse files
authored
Merge pull request #372 from mishina2228/fix-markdown
1.0: Minor fix for plugin-development
2 parents 58210ce + a140cdf commit 0a78eaa

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

plugin-development/README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,8 @@ Following is a snippet of `README.md` showing the project skeleton generated wit
248248

249249
For example:
250250

251-
```text
251+
<!--- four backquotes are used because the block contains three backquotes for markup -->
252+
````text
252253
# fluent-plugin-http2
253254
254255
[Fluentd](https://fluentd.org/) input plugin to do something.
@@ -258,11 +259,11 @@ TODO: write description for you plugin.
258259
## Installation
259260
260261
### RubyGems
261-
```
262262
263+
```
263264
$ gem install fluent-plugin-http2
265+
```
264266
265-
```text
266267
### Bundler
267268
268269
Add following line to your Gemfile:
@@ -273,27 +274,26 @@ gem "fluent-plugin-http2"
273274
274275
And then execute:
275276
276-
```text
277+
```
277278
$ bundle
278279
```
279280
280281
## Configuration
281282
282283
You can generate configuration template:
283284
284-
```text
285+
```
285286
$ fluent-plugin-config-format input http2
286287
```
287288
288289
You can copy and paste generated documents here.
289290
290291
## Copyright
291292
292-
* Copyright\(c\) 2017- John Doe
293+
* Copyright(c) 2017- John Doe
293294
* License
294295
* Apache License, Version 2.0
295-
296-
\`\`\`
296+
````
297297

298298
You should write the plugin description and configurations.
299299

@@ -328,9 +328,6 @@ For more details, see `fluent-plugin-config-format --help`.
328328
## Further Reading
329329

330330
* [Slides: Fluentd v0.14 Plugin API Details](http://www.slideshare.net/tagomoris/fluentd-v014-plugin-api-details)
331-
* [Slides: Dive into Fluentd Plugin](http://www.slideshare.net/repeatedly/dive-into-fluentd-plugin-v012)
332-
333-
\(outdated\)
331+
* [Slides: Dive into Fluentd Plugin](http://www.slideshare.net/repeatedly/dive-into-fluentd-plugin-v012) (outdated)
334332

335333
If this article is incorrect or outdated, or omits critical information, please [let us know](https://github.com/fluent/fluentd-docs-gitbook/issues?state=open). [Fluentd](http://www.fluentd.org/) is an open-source project under [Cloud Native Computing Foundation \(CNCF\)](https://cncf.io/). All components are available under the Apache 2 License.
336-

0 commit comments

Comments
 (0)