Skip to content

Commit fa0fa18

Browse files
committed
chore(dep): update links, migrate repo
1 parent 615ab07 commit fa0fa18

37 files changed

Lines changed: 73 additions & 73 deletions

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Thanks for your interest in contributing.
55
## Getting started
66

77
```bash
8-
git clone https://github.com/Gubarz/cheatmd.git
8+
git clone https://github.com/cheatmd-dev/cheatmd.git
99
cd cheatmd
1010
go build ./cmd/cheatmd
1111
go test ./...
@@ -44,7 +44,7 @@ the problem or the desired behavior, include it.
4444

4545
## Wiki
4646

47-
Documentation lives in the [Wiki](https://github.com/Gubarz/cheatmd/wiki).
47+
Documentation lives in the [Wiki](https://github.com/cheatmd-dev/cheatmd/wiki).
4848
If you spot an error or want to add a recipe, open a PR against the wiki
4949
repo or mention it in an issue.
5050

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2026 Gubarz
3+
Copyright (c) 2026 cheatmd-dev
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CheatMD
22

3-
[![CI](https://github.com/Gubarz/cheatmd/actions/workflows/ci.yml/badge.svg)](https://github.com/Gubarz/cheatmd/actions/workflows/ci.yml)
4-
[![Go Report Card](https://goreportcard.com/badge/github.com/gubarz/cheatmd)](https://goreportcard.com/report/github.com/gubarz/cheatmd)
3+
[![CI](https://github.com/cheatmd-dev/cheatmd/actions/workflows/ci.yml/badge.svg)](https://github.com/cheatmd-dev/cheatmd/actions/workflows/ci.yml)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/cheatmd-dev/cheatmd)](https://goreportcard.com/report/github.com/cheatmd-dev/cheatmd)
55
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
66

77
Executable Markdown cheatsheets. Write readable docs, run interactive commands.
@@ -11,7 +11,7 @@ Executable Markdown cheatsheets. Write readable docs, run interactive commands.
1111
## Install
1212

1313
```bash
14-
go install github.com/gubarz/cheatmd/cmd/cheatmd@latest
14+
go install github.com/cheatmd-dev/cheatmd/cmd/cheatmd@latest
1515
```
1616

1717
## Quick Start

cmd/cheatmd/chain.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import (
44
"fmt"
55
"path/filepath"
66

7-
"github.com/gubarz/cheatmd/pkg/chainstate"
8-
"github.com/gubarz/cheatmd/pkg/config"
7+
"github.com/cheatmd-dev/cheatmd/pkg/chainstate"
8+
"github.com/cheatmd-dev/cheatmd/pkg/config"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/cheatmd/compose.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99

1010
"github.com/spf13/cobra"
1111

12-
"github.com/gubarz/cheatmd/pkg/config"
13-
"github.com/gubarz/cheatmd/pkg/parser"
12+
"github.com/cheatmd-dev/cheatmd/pkg/config"
13+
"github.com/cheatmd-dev/cheatmd/pkg/parser"
1414
)
1515

1616
var composeCmd = &cobra.Command{

cmd/cheatmd/convert.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
"github.com/spf13/cobra"
1010

11-
"github.com/gubarz/cheatmd/pkg/convert"
11+
"github.com/cheatmd-dev/cheatmd/pkg/convert"
1212
)
1313

1414
var convertCmd = &cobra.Command{

cmd/cheatmd/dump.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
"strconv"
1010
"strings"
1111

12-
"github.com/gubarz/cheatmd/pkg/config"
13-
"github.com/gubarz/cheatmd/pkg/parser"
12+
"github.com/cheatmd-dev/cheatmd/pkg/config"
13+
"github.com/cheatmd-dev/cheatmd/pkg/parser"
1414
"github.com/spf13/cobra"
1515
)
1616

cmd/cheatmd/lint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"os"
66

77
"github.com/charmbracelet/lipgloss"
8-
"github.com/gubarz/cheatmd/pkg/linter"
8+
"github.com/cheatmd-dev/cheatmd/pkg/linter"
99
"github.com/spf13/cobra"
1010
)
1111

cmd/cheatmd/root.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ import (
77
"runtime"
88
"time"
99

10-
"github.com/gubarz/cheatmd/internal/headless"
11-
"github.com/gubarz/cheatmd/internal/ui"
12-
"github.com/gubarz/cheatmd/pkg/config"
13-
"github.com/gubarz/cheatmd/pkg/executor"
14-
"github.com/gubarz/cheatmd/pkg/parser"
10+
"github.com/cheatmd-dev/cheatmd/internal/headless"
11+
"github.com/cheatmd-dev/cheatmd/internal/ui"
12+
"github.com/cheatmd-dev/cheatmd/pkg/config"
13+
"github.com/cheatmd-dev/cheatmd/pkg/executor"
14+
"github.com/cheatmd-dev/cheatmd/pkg/parser"
1515
"github.com/spf13/cobra"
1616
)
1717

cmd/cheatmd/widgets.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"strings"
66

7-
"github.com/gubarz/cheatmd/pkg/config"
7+
"github.com/cheatmd-dev/cheatmd/pkg/config"
88
"github.com/spf13/cobra"
99
)
1010

0 commit comments

Comments
 (0)