DEV Community

Discussion on: Active job in Rails: Things You Need to Know šŸ’Ž

Collapse
 
povilasjurcys profile image
Povilas Jurčys

Hey @iamak, nice article. One small improvement I could suggest is to use programming language-specific markdown code blocks to enable syntax highlighting. For example this code will be white-and-black:

```
class MyClass
end
```

like this:

class MyClass
end
Enter fullscreen mode Exit fullscreen mode

and this code will have all then neat ruby syntax highlight:

```ruby
class MyClass
end
```

like this:

class MyClass
end
Enter fullscreen mode Exit fullscreen mode

Good luck. Eager to see your new posts :)

Collapse
 
iamak profile image
Ajithkumar P S

Hey @povilasjurcys thanks for your suggestion. Sorry I missed your comment.