TrendingTechnology / ml

Make Link with Markdown Format

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ml -- Make Link with Markdown Format

check vulns lint status lint status GitHub license GitHub release

This package is required Go 1.16 or later.

Build and Install

$ go install github.com/spiegel-im-spiegel/gpgpdump@latest

Binaries

See latest release.

Usage

$ ml -h
Usage:
  ml [flags] [URL [URL]...]

Flags:
      --debug          for debug
  -h, --help           help for ml
  -i, --interactive    interactive mode
  -l, --log int        history log size
  -s, --style string   link style [markdown|wiki|html|csv|json] (default "markdown")
  -v, --version        output version of ml
$ ml https://git.io/vFR5M
[GitHub - spiegel-im-spiegel/ml: Make Link with Markdown Format](https://github.com/spiegel-im-spiegel/ml)
$ echo https://git.io/vFR5M | ml
[GitHub - spiegel-im-spiegel/ml: Make Link with Markdown Format](https://github.com/spiegel-im-spiegel/ml)

Support Other Styles

$ ml -s html https://git.io/vFR5M
<a href="https://github.com/spiegel-im-spiegel/ml">GitHub - spiegel-im-spiegel/ml: Make Link with Markdown Format</a>

Support Styles: markdown, wiki, html, csv, json

Interactive Mode

$ ml -i
Input 'q' or 'quit' to stop
ml> https://git.io/vFR5M
[GitHub - spiegel-im-spiegel/ml: Make Link with Markdown Format](https://github.com/spiegel-im-spiegel/ml)
ml>

With Go Codes

package main

import (
    "context"
    "fmt"
    "io"
    "os"

    "github.com/spiegel-im-spiegel/ml/makelink"
)

func main() {
    lnk, err := makelink.New(context.Background(), "https://git.io/vFR5M")
    if err != nil {
        fmt.Fprintln(os.Stderr, err)
        return
    }
    _, _ = io.Copy(os.Stdout, lnk.Encode(makelink.StyleMarkdown))
    // Output:
    // [GitHub - spiegel-im-spiegel/ml: Make Link with Markdown Format](https://github.com/spiegel-im-spiegel/ml)
}

Modules Requirement Graph

dependency.png

About

Make Link with Markdown Format

License:Apache License 2.0


Languages

Language:Go 100.0%