11/*
22 * Markdown to PDF Converter
3- * Available at http://github.com/mandolyte/mdtopdf
3+ * Available at http://github.com/solworktech/md2pdf
44 *
55 * Copyright © Cecil New <cecil.new@gmail.com>, Jesse Portnoy <jesse@packman.io>.
66 * Distributed under the MIT License.
1414 *
1515 * fpdf - a PDF document generator with high level support for
1616 * text, drawing and images.
17- * Available at https://github.com /go-pdf/fpdf
17+ * Available at https://codeberg.org /go-pdf/fpdf
1818 */
1919
2020// Package mdtopdf converts markdown to PDF.
@@ -30,7 +30,7 @@ import (
3030
3131 "strings"
3232
33- "github.com /go-pdf/fpdf"
33+ "codeberg.org /go-pdf/fpdf"
3434 "github.com/gomarkdown/markdown"
3535 "github.com/gomarkdown/markdown/ast"
3636 "github.com/gomarkdown/markdown/parser"
@@ -456,9 +456,9 @@ func (r *PdfRenderer) UpdateBlockquoteStyler() {
456456}
457457
458458func (r * PdfRenderer ) setStyler (s Styler ) {
459- // see https://github.com/mandolyte/mdtopdf /issues/18#issuecomment-2179694815
459+ // see https://github.com/solworktech/md2pdf /issues/18#issuecomment-2179694815
460460 // This does not address the root cause
461- // (https://github.com/mandolyte/mdtopdf /issues/18#issuecomment-2179694815)
461+ // (https://github.com/solworktech/md2pdf /issues/18#issuecomment-2179694815)
462462 // but it will correct all cases and is safer.
463463 if s .Style == "bb" {
464464 s .Style = "b"
0 commit comments