// Copyright 2017 The Go Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // To use: Create an HTML file using the following format... /*

*/ // Then run mkhtml.go and it will inline the SVG files. package main import ( "bytes" "flag" "io/ioutil" "log" "strings" ) var strip = flag.Bool("strip", false, "strip included files") func main() { flag.Parse() for _, arg := range flag.Args() { do(arg) } } func do(file string) { data, err := ioutil.ReadFile(file) if err != nil { log.Fatal(err) } var out []byte skip := false for _, line := range bytes.SplitAfter(data, []byte("\n")) { if skip && bytes.HasPrefix(line, []byte("