Skip to content

Commit

Permalink
fixing lines with tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
cdreier committed Dec 14, 2017
1 parent 3733685 commit 1c9d0f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ func getSlideContent(content string) string {

scanner := bufio.NewScanner(strings.NewReader(content))
for scanner.Scan() {
tmp := scanner.Text()
tmp := strings.Trim(scanner.Text(), "\t ")
finalSlide += "\t" + tmp + "\n"
}

Expand Down

0 comments on commit 1c9d0f5

Please sign in to comment.