-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: tokyo night Signed-off-by: Carlos Alexandro Becker <[email protected]> * docs: contributing styles * refactor(styles): move to styles package * feat(examples): add stdin/stdout example with env styles detection * chore: clean commented code * fix: fix errors * docs(gallery): add tokyo night image * fix: update generate-style-json path Co-authored-by: Ayman Bagabas <[email protected]> * docs: how to create a new style --------- Signed-off-by: Carlos Alexandro Becker <[email protected]> Co-authored-by: bashbunni <[email protected]> Co-authored-by: bashbunni <[email protected]> Co-authored-by: Ayman Bagabas <[email protected]>
- Loading branch information
1 parent
1fcce6f
commit 29b800e
Showing
12 changed files
with
320 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
package main | ||
|
||
// A simple example that renders input through a pipe. | ||
// | ||
// Usage: | ||
// echo "# Hello, world!" | go run main.go | ||
// | ||
// cat README.md | go run main.go | ||
// | ||
// go run main.go < README.md | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"os" | ||
|
||
"github.com/charmbracelet/glamour" | ||
) | ||
|
||
const defaultWidth = 80 | ||
|
||
func main() { | ||
// Read from stdin. | ||
in, err := io.ReadAll(os.Stdin) | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error reading stdin: %s\n", err) | ||
} | ||
|
||
// Create a new renderer. | ||
r, err := glamour.NewTermRenderer( | ||
glamour.WithEnvironmentConfig(), | ||
glamour.WithWordWrap(defaultWidth), | ||
) | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error creating renderer: %s\n", err) | ||
} | ||
|
||
// Render markdown. | ||
md, err := r.RenderBytes(in) | ||
if err != nil { | ||
fmt.Fprintf(os.Stderr, "Error rendering markdown: %s\n", err) | ||
} | ||
|
||
// Write markdown to stdout. | ||
fmt.Fprintf(os.Stdout, "%s\n", md) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.