Skip to content

Commit 5af1444

Browse files
committedNov 17, 2024
cli: add include & exclude selectors
1 parent c9b6dbc commit 5af1444

File tree

20 files changed

+408
-126
lines changed

20 files changed

+408
-126
lines changed
 

‎cli/cmd/cmd_convert.go

+73-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@ import (
44
"bytes"
55
"fmt"
66

7+
"github.com/JohannesKaufmann/dom"
78
"github.com/JohannesKaufmann/html-to-markdown/v2/converter"
89
"github.com/JohannesKaufmann/html-to-markdown/v2/plugin/base"
910
"github.com/JohannesKaufmann/html-to-markdown/v2/plugin/commonmark"
11+
"github.com/JohannesKaufmann/html-to-markdown/v2/plugin/strikethrough"
12+
"github.com/andybalholm/cascadia"
13+
"golang.org/x/net/html"
1014
)
1115

1216
func overrideValidationError(e *commonmark.ValidateConfigError) error {
@@ -26,8 +30,66 @@ func overrideValidationError(e *commonmark.ValidateConfigError) error {
2630
e.KeyWithValue = fmt.Sprintf("--%s=%q", e.Key, e.Value)
2731
return e
2832
}
29-
func (cli *CLI) convert(input []byte) ([]error, error) {
3033

34+
func (cli *CLI) includeNodesFromDoc(doc *html.Node) (*html.Node, error) {
35+
if len(cli.config.includeSelector) == 0 {
36+
return doc, nil
37+
}
38+
nodes := cascadia.QueryAll(doc, cli.config.includeSelector)
39+
40+
root := &html.Node{}
41+
for _, n := range nodes {
42+
dom.RemoveNode(n)
43+
root.AppendChild(n)
44+
}
45+
46+
return root, nil
47+
}
48+
func (cli *CLI) excludeNodesFromDoc(doc *html.Node) error {
49+
if len(cli.config.excludeSelector) == 0 {
50+
return nil
51+
}
52+
53+
var finder func(node *html.Node)
54+
finder = func(node *html.Node) {
55+
if cli.config.excludeSelector.Match(node) {
56+
dom.RemoveNode(node)
57+
return
58+
}
59+
60+
for child := node.FirstChild; child != nil; child = child.NextSibling {
61+
// Because we are sometimes removing a node, this causes problems
62+
// with the for loop. Using `defer` is a cool trick!
63+
// https://gist.github.com/loopthrough/17da0f416054401fec355d338727c46e
64+
defer finder(child)
65+
}
66+
}
67+
finder(doc)
68+
69+
return nil
70+
}
71+
func (cli *CLI) parseInputWithSelectors(input []byte) (*html.Node, error) {
72+
r := bytes.NewReader(input)
73+
74+
doc, err := html.Parse(r)
75+
if err != nil {
76+
return nil, fmt.Errorf("error while parsing html: %w", err)
77+
}
78+
79+
doc, err = cli.includeNodesFromDoc(doc)
80+
if err != nil {
81+
return nil, err
82+
}
83+
84+
err = cli.excludeNodesFromDoc(doc)
85+
if err != nil {
86+
return nil, err
87+
}
88+
89+
return doc, nil
90+
}
91+
92+
func (cli *CLI) convert(input []byte) ([]error, error) {
3193
conv := converter.NewConverter(
3294
converter.WithPlugins(
3395
base.NewBasePlugin(),
@@ -36,9 +98,17 @@ func (cli *CLI) convert(input []byte) ([]error, error) {
3698
),
3799
),
38100
)
101+
if cli.config.enablePluginStrikethrough {
102+
// TODO: while this works, this does not add the `Name` to the internal list
103+
strikethrough.NewStrikethroughPlugin().Init(conv)
104+
}
39105

40-
r := bytes.NewReader(input)
41-
markdown, err := conv.ConvertReader(r)
106+
doc, err := cli.parseInputWithSelectors(input)
107+
if err != nil {
108+
return nil, err
109+
}
110+
111+
markdown, err := conv.ConvertNode(doc, converter.WithDomain(cli.config.domain))
42112
if err != nil {
43113
e, ok := err.(*commonmark.ValidateConfigError)
44114
if ok {

‎cli/cmd/exec.go

+9-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ import (
77
"io"
88
"os"
99
"strings"
10+
11+
"github.com/andybalholm/cascadia"
1012
)
1113

1214
var (
@@ -22,13 +24,18 @@ type Config struct {
2224
// args are the positional (non-flag) command-line arguments.
2325
args []string
2426

27+
// - - - - - General - - - - - //
2528
version bool
29+
domain string
2630

27-
// - - - - //
31+
includeSelector cascadia.SelectorGroup
32+
excludeSelector cascadia.SelectorGroup
2833

34+
// - - - - - Options - - - - - //
2935
strongDelimiter string
3036

31-
plugins []string
37+
// - - - - - Plugins - - - - - //
38+
enablePluginStrikethrough bool
3239
}
3340

3441
// Release holds the information (from the 3 ldflags) that goreleaser sets.

‎cli/cmd/exec_test.go

+220-25
Large diffs are not rendered by default.

‎cli/cmd/flags.go

+32-37
Original file line numberDiff line numberDiff line change
@@ -5,49 +5,50 @@ import (
55
"fmt"
66
"io"
77
"strings"
8-
"unicode"
9-
)
10-
11-
type FlagString string
128

13-
func (a *FlagString) Scan(state fmt.ScanState, verb rune) error {
14-
token, err := state.Token(true, func(r rune) bool {
15-
return unicode.IsLetter(r) || r == '-'
16-
})
17-
if err != nil {
18-
return err
19-
}
20-
*a = FlagString(token)
21-
return nil
22-
}
23-
24-
func flagStringSlice(elems *[]string) func(string) error {
25-
return func(raw string) error {
26-
values := strings.Split(raw, ",")
9+
"github.com/andybalholm/cascadia"
10+
)
2711

28-
for _, val := range values {
29-
val = strings.TrimSpace(val)
30-
if val == "" {
31-
continue
32-
}
12+
// selectorFlag sets up a flag that parses a CSS selector string into a cascadia.Selector.
13+
func (cli *CLI) selectorFlag(target *cascadia.SelectorGroup, name string, usage string) {
14+
cli.flags.Func(name, usage, func(flagValue string) error {
15+
if strings.TrimSpace(flagValue) == "" {
16+
return fmt.Errorf("invalid css selector: empty string")
17+
}
3318

34-
*elems = append(*elems, val)
19+
// Compile the provided CSS selector string
20+
sel, err := cascadia.ParseGroup(flagValue)
21+
if err != nil {
22+
return fmt.Errorf("invalid css selector: %w", err)
3523
}
24+
25+
*target = append(*target, sel...)
3626
return nil
37-
}
27+
})
3828
}
3929

4030
func (cli *CLI) initFlags(progname string) {
4131
cli.flags = flag.NewFlagSet(progname, flag.ContinueOnError)
4232
cli.flags.SetOutput(io.Discard)
4333

44-
// - - - //
45-
34+
// - - - - - General - - - - - //
4635
cli.flags.BoolVar(&cli.config.version, "version", false, "display the version")
4736
cli.flags.BoolVar(&cli.config.version, "v", false, "display the version")
4837

49-
// cli.flags.BoolVar(&cli.config.help, "help", false, "display help")
38+
// TODO: --tag-type-block=script,style (and check that it is not a selector)
39+
// TODO: --tag-type-inline=script,style (and check that it is not a selector)
40+
41+
cli.flags.StringVar(
42+
&cli.config.domain,
43+
"domain",
44+
"",
45+
"domain of the web page, needed for links",
46+
)
47+
48+
cli.selectorFlag(&cli.config.includeSelector, "include-selector", "css query selector to only include parts of the input")
49+
cli.selectorFlag(&cli.config.excludeSelector, "exclude-selector", "css query selector to exclude parts of the input")
5050

51+
// - - - - - Options - - - - - //
5152
cli.flags.StringVar(
5253
&cli.config.strongDelimiter,
5354
"opt-strong-delimiter",
@@ -56,16 +57,10 @@ func (cli *CLI) initFlags(progname string) {
5657
"**" or "__" (default: "**")`,
5758
)
5859

59-
// cli.flags.StringVar(&cli.config.strongDelimiter, "opt-heading-style", "", "")
60-
// cli.flags.StringVar(&cli.config.strongDelimiter, "opt-horizontal-rule", "", "")
61-
// cli.flags.StringVar(&cli.config.strongDelimiter, "opt-bullet-list-marker", "", "")
60+
// - - - - - Plugins - - - - - //
61+
// TODO: --opt-strikethrough-delimiter for the strikethrough plugin
62+
cli.flags.BoolVar(&cli.config.enablePluginStrikethrough, "plugin-strikethrough", false, "enable the plugin ~~strikethrough~~")
6263

63-
// TODO: how to disable commonmark plugin?
64-
// --plugin_commonmark=false
65-
// --plugin.commonmark=false
66-
// --no-plugin="cm" / --disable-plugin="cm"
67-
// But what if we have conflicting flags???
68-
cli.flags.Func("plugins", "which plugins should be enabled?", flagStringSlice(&cli.config.plugins))
6964
}
7065

7166
func (cli *CLI) parseFlags(args []string) error {

‎cli/cmd/flags_categorize.go

-2
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ func (cli *CLI) getAlternativeFlag(unknownFlag string) string {
3131
}
3232
})
3333

34-
fmt.Printf("%q <> %q -> %d \n", unknownFlag, closestFlag, closestDistance)
35-
3634
if closestDistance >= utf8.RuneCountInString(unknownFlag) {
3735
return ""
3836
}

‎cli/cmd/flags_test.go

-47
This file was deleted.

‎cli/cmd/testdata/TestExecute/[exclude-selector]_exclude_multiple/stderr.golden

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Some and text

‎cli/cmd/testdata/TestExecute/[general]_help_pipe/stdout.golden

+11-2
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,21 @@ Use a HTML sanitizer before displaying the HTML in the browser!
3939
--help
4040

4141

42+
--domain
43+
domain of the web page, needed for links
44+
45+
--exclude-selector
46+
css query selector to exclude parts of the input
47+
48+
--include-selector
49+
css query selector to only include parts of the input
50+
4251
--opt-strong-delimiter
4352
Make bold text. Should <strong> be indicated by two asterisks or two underscores?
4453
"**" or "__" (default: "**")
4554

46-
--plugins
47-
which plugins should be enabled?
55+
--plugin-strikethrough
56+
enable the plugin ~~strikethrough~~
4857

4958

5059

‎cli/cmd/testdata/TestExecute/[general]_help_terminal/stdout.golden

+11-2
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,21 @@ Use a HTML sanitizer before displaying the HTML in the browser!
3939
--help
4040

4141

42+
--domain
43+
domain of the web page, needed for links
44+
45+
--exclude-selector
46+
css query selector to exclude parts of the input
47+
48+
--include-selector
49+
css query selector to only include parts of the input
50+
4251
--opt-strong-delimiter
4352
Make bold text. Should <strong> be indicated by two asterisks or two underscores?
4453
"**" or "__" (default: "**")
4554

46-
--plugins
47-
which plugins should be enabled?
55+
--plugin-strikethrough
56+
enable the plugin ~~strikethrough~~
4857

4958

5059

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
error: invalid value " " for flag -include-selector: invalid css selector: empty string
3+

‎cli/cmd/testdata/TestExecute/[include-selector]_empty_string/stdout.golden

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
error: invalid value "?" for flag -include-selector: invalid css selector: expected identifier, found ? instead
3+

‎cli/cmd/testdata/TestExecute/[include-selector]_invalid/stdout.golden

Whitespace-only changes.

‎cli/cmd/testdata/TestExecute/[include-selector]_multiple_matches/stderr.golden

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**ab**

‎cli/cmd/testdata/TestExecute/[include-selector]_one_match/stderr.golden

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
**bold text**

‎go.mod

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ go 1.22.1
55
require (
66
github.com/JohannesKaufmann/dom v0.1.1-0.20240706125338-ff9f3b772364
77
github.com/agnivade/levenshtein v1.2.0
8+
github.com/andybalholm/cascadia v1.3.2
89
github.com/muesli/termenv v0.15.2
910
github.com/sebdah/goldie/v2 v2.5.5
1011
github.com/yuin/goldmark v1.7.8
11-
golang.org/x/net v0.30.0
12+
golang.org/x/net v0.31.0
1213
)
1314

1415
require (
@@ -19,5 +20,5 @@ require (
1920
github.com/pmezard/go-difflib v1.0.0 // indirect
2021
github.com/rivo/uniseg v0.4.7 // indirect
2122
github.com/sergi/go-diff v1.3.1 // indirect
22-
golang.org/x/sys v0.26.0 // indirect
23+
golang.org/x/sys v0.27.0 // indirect
2324
)

‎go.sum

+40-4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ github.com/JohannesKaufmann/dom v0.1.1-0.20240706125338-ff9f3b772364 h1:TDlO/A2Q
22
github.com/JohannesKaufmann/dom v0.1.1-0.20240706125338-ff9f3b772364/go.mod h1:U+fBZLZTYiZCOwQUT04V3J4I+0TxyLNnj0R8nBlO4fk=
33
github.com/agnivade/levenshtein v1.2.0 h1:U9L4IOT0Y3i0TIlUIDJ7rVUziKi/zPbrJGaFrtYH3SY=
44
github.com/agnivade/levenshtein v1.2.0/go.mod h1:QVVI16kDrtSuwcpd0p1+xMC6Z/VfhtCyDIjcwga4/DU=
5+
github.com/andybalholm/cascadia v1.3.2 h1:3Xi6Dw5lHF15JtdcmAHD3i1+T8plmv7BQ/nsViSLyss=
6+
github.com/andybalholm/cascadia v1.3.2/go.mod h1:7gtRlve5FxPPgIgX36uWBX58OdBsSS6lUvCFb+h7KvU=
57
github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0 h1:jfIu9sQUG6Ig+0+Ap1h4unLjW6YQJpKZVmUzxsD4E/Q=
68
github.com/arbovm/levenshtein v0.0.0-20160628152529-48b4e1c0c4d0/go.mod h1:t2tdKJDJF9BV14lnkjHmOQgcvEKgtqs5a1N3LNdJhGE=
79
github.com/aymanbagabas/go-osc52/v2 v2.0.1 h1:HwpRHbFMcZLEVr42D4p7XBqjyuxQH5SMiErDT4WkJ2k=
@@ -37,13 +39,47 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
3739
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
3840
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
3941
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
42+
github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
4043
github.com/yuin/goldmark v1.7.8 h1:iERMLn0/QJeHFhxSt3p6PeN9mGnvIKSpG9YYorDMnic=
4144
github.com/yuin/goldmark v1.7.8/go.mod h1:uzxRWxtg69N339t3louHJ7+O03ezfj6PlliRlaOzY1E=
42-
golang.org/x/net v0.30.0 h1:AcW1SDZMkb8IpzCdQUaIq2sP4sZ4zw+55h6ynffypl4=
43-
golang.org/x/net v0.30.0/go.mod h1:2wGyMJ5iFasEhkwi13ChkO/t1ECNC4X4eBKkVFyYFlU=
45+
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
46+
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
47+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
48+
golang.org/x/mod v0.8.0/go.mod h1:iBbtSCu2XBx23ZKBPSOrRkjjQPZFPuis4dIYUhu/chs=
49+
golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
50+
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
51+
golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
52+
golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
53+
golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
54+
golang.org/x/net v0.31.0 h1:68CPQngjLL0r2AlUKiSxtQFKvzRVbnzLwMUn5SzcLHo=
55+
golang.org/x/net v0.31.0/go.mod h1:P4fl1q7dY2hnZFxEk4pPSkDHF+QqjitcnDjUQyMM+pM=
56+
golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
57+
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
58+
golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
59+
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
60+
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
61+
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
62+
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
63+
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
64+
golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
4465
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
45-
golang.org/x/sys v0.26.0 h1:KHjCJyddX0LoSTb3J+vWpupP9p0oznkqVk/IfjymZbo=
46-
golang.org/x/sys v0.26.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
66+
golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
67+
golang.org/x/sys v0.27.0 h1:wBqf8DvsY9Y/2P8gAfPDEYNuS30J4lPHJxXSb/nJZ+s=
68+
golang.org/x/sys v0.27.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
69+
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
70+
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
71+
golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
72+
golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY=
73+
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
74+
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
75+
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
76+
golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
77+
golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
78+
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
79+
golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
80+
golang.org/x/tools v0.1.12/go.mod h1:hNGJHUnrk76NpqgfD5Aqm5Crs+Hm0VOH/i9J2+nxYbc=
81+
golang.org/x/tools v0.6.0/go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU=
82+
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
4783
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4884
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
4985
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

0 commit comments

Comments
 (0)
Please sign in to comment.