mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-06-22 05:28:25 +00:00
Move the tool as a dependency for static checks migration. Fixes #8187 Signed-off-by: Bin Liu <bin@hyper.sh> Signed-off-by: Chelsea Mafrica <chelsea.e.mafrica@intel.com> Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com> Signed-off-by: Ganesh Maharaj Mahalingam <ganesh.mahalingam@intel.com> Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com> Signed-off-by: Julio Montes <julio.montes@intel.com>
30 lines
574 B
Go
30 lines
574 B
Go
//
|
|
// Copyright (c) 2019 Intel Corporation
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
package main
|
|
|
|
// headingByLinkName returns the heading associated with the specified link name.
|
|
func (d *Doc) headingByLinkName(linkName string) *Heading {
|
|
for _, heading := range d.Headings {
|
|
if heading.LinkName == linkName {
|
|
return &heading
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// heading returns the heading with the name specified.
|
|
func (d *Doc) heading(name string) *Heading {
|
|
for _, heading := range d.Headings {
|
|
if name == heading.LinkName {
|
|
return &heading
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|