File: codeblock_fenced.text

package info (click to toggle)
ruby-kramdown-parser-gfm 1.1.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 264 kB
  • sloc: ruby: 217; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 229 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
normal

```ruby
require 'kramdown'

Kramdown::Document.new(text).to_html
```

indent with tab

	```ruby
	require 'kramdown'

	Kramdown::Document.new(text).to_html
	```

indent with 2 spaces

  ```js
  console.log("hello");
  ```