summaryrefslogtreecommitdiff
path: root/vendor/bundle/ruby/3.4.0/gems/kramdown-parser-gfm-1.1.0/test/testcases/codeblock_fenced.text
blob: 5e3e192cdee84afc223c6be1abb13c4d48f45392 (plain)
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");
  ```