Skip to content

Instantly share code, notes, and snippets.

Hi there!

@tagnja
tagnja / example.md
Created November 17, 2019 11:37 — forked from ericclemmons/example.md
HTML5 <details> in GitHub

Using <details> in GitHub

Suppose you're opening an issue and there's a lot noisey logs that may be useful.

Rather than wrecking readability, wrap it in a <details> tag!

<details>
 Summary Goes Here
@tagnja
tagnja / Hello.java
Created June 1, 2019 17:09
Hello by java
public class Hello
{
public static void main(String[] args)
{
System.out.println("Hello!");
}
}
public class HelloWorld{
public static void main(String[] args){
System.out.println("HelloWorld!");
}
}