blob: a0c5d74cf5c2347df32be990953f65604a81f2af [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package templates
const TemplateTxt = `
{{ range $_, $license := .Used }}
================================================================================
License Category: {{ (getCategory $license) }}
{{ range $match := (getMatches $license) }}
--------------------------------------------------------------------------------
{{ (getCopyrights $match) }}
{{ (getProjectsFromMatch $match) }}
{{ (getFilesFromMatch $match) }}
{{ $match.Text }}
{{ end }}
================================================================================
{{ end }}
`