kata-containers/tests/cmd/check-markdown/search.go
Chelsea Mafrica 8ad433d4ad tests: move markdown check tool to main repo
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>
2023-11-28 11:13:55 -08:00

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
}