From 86081ef2f8c555d833ae6d8a305de4649e8f5a74 Mon Sep 17 00:00:00 2001 From: dyma solovei Date: Tue, 30 Jan 2024 20:17:10 +0100 Subject: [PATCH] fix: change import path for goldmark-jupyter This could be a breaking change, but afaik nobody uses this package atm + goldmark-jupyter does not semver, so I'm making it a simple fix instead --- README.md | 2 +- extension/extra/goldmark-jupyter/attachment_test.go | 2 +- extension/extra/goldmark-jupyter/go.mod | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8f09c84..f1f615b 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ import ( synth "github.com/bevzzz/nb-synth" "github.com/bevzzz/nb/extension" "github.com/bevzzz/nb/extension/adapter" - jupyter "github.com/nb/extension/extra/goldmark-jupyter" + jupyter "github.com/bevzzz/nb/extension/extra/goldmark-jupyter" "github.com/robert-nix/ansihtml" "github.com/yuin/goldmark" highlighting "github.com/yuin/goldmark-highlighting/v2" diff --git a/extension/extra/goldmark-jupyter/attachment_test.go b/extension/extra/goldmark-jupyter/attachment_test.go index 34852df..d261ea8 100644 --- a/extension/extra/goldmark-jupyter/attachment_test.go +++ b/extension/extra/goldmark-jupyter/attachment_test.go @@ -7,7 +7,7 @@ import ( "github.com/bevzzz/nb" "github.com/bevzzz/nb/pkg/test" "github.com/bevzzz/nb/schema" - jupyter "github.com/nb/extension/extra/goldmark-jupyter" + jupyter "github.com/bevzzz/nb/extension/extra/goldmark-jupyter" "github.com/stretchr/testify/require" "github.com/yuin/goldmark" "github.com/yuin/goldmark/renderer/html" diff --git a/extension/extra/goldmark-jupyter/go.mod b/extension/extra/goldmark-jupyter/go.mod index a08059f..b318d9f 100644 --- a/extension/extra/goldmark-jupyter/go.mod +++ b/extension/extra/goldmark-jupyter/go.mod @@ -1,4 +1,4 @@ -module github.com/nb/extension/extra/goldmark-jupyter +module github.com/bevzzz/nb/extension/extra/goldmark-jupyter go 1.18