Skip to content

Commit 5d29525

Browse files
committed
readme
1 parent 3450090 commit 5d29525

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
.DS_Store
22
.vscode/
3+
4+
stackexchange-xml-converter

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# stackexchange-xml-converter
22

3-
CLI tool allows you to convert [Stack Exchange data dumps](https://archive.org/download/stackexchange) from `XML` to `CSV` or `JSON` formats, what is more suitable for importing to the different databases.
3+
CLI tool that allows you to convert [Stack Exchange data dumps](https://archive.org/download/stackexchange) from `XML` to `CSV` or `JSON` formats, which is more suitable for importing to the different databases.
44

55
Table of contents
66
=================

main.go

-4
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,6 @@ func main() {
1616
flag.BoolVar(&cfg.SkipHTMLDecoding, "skip-html-decoding", false, "Path where to store CSV file(s)")
1717
flag.Parse()
1818

19-
// cfg.ResultFormat = "json"
20-
// cfg.SourcePath = "../../Desktop/academia.stackexchange.com"
21-
// cfg.StoreToDir = "../../Desktop/academia_json"
22-
2319
var err error
2420
err = converter.Convert(cfg)
2521
if err != nil {

0 commit comments

Comments
 (0)