Sha256: 46d84f99df18bacb881c13139d4fae19c4d78ae4cded48454f4d4c6c498950b2

Contents?: true

Size: 408 Bytes

Versions: 2

Compression:

Stored size: 408 Bytes

Contents

---
title: Syntax Highlight Test
date: 2016-05-15
---
You can include snippets of code in your posts.

Here's some Ruby:

```ruby
class Foo
  def bar(arg)
    puts "hello #{arg}"
  end
end
```

Here's some Elixir:

```elixir
defmodule Foo do
  def bar(arg) do
    IO.puts "hello #{arg}"
  end
end
```

Here's some Rust:

```rust
mod foo {
  pub fn bar(arg: String) {
    println!("hello {}", arg);
  }
}
```

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tufte-1.0.1 scaffold/posts/syntax-highlight-test.yml
tufte-1.0.0 scaffold/posts/syntax-highlight-test.yml