# Hello World
This is an example of the Markdown rendering in GitHub.dart!
You'll need to import browser_helper.dart to get access to the renderMarkdown method.
## Usage
In your Dart Code:
```dart
import 'package:github/github.dart';
import 'package:github/browser_helper.dart';
void main() {
var github = GitHub();
// Renders Elements with the markdown attribute
renderMarkdown(github, "*[markdown]");
}
```
In your HTML:
```html
<div hidden markdown>
# Your Markdown Here
</div>
```