ladybird/Libraries/LibWeb/MathML/AttributeNames.cpp

17 lines
370 B
C++
Raw Normal View History

/*
* Copyright (c) 2025, Lorenz Ackermann, <me@lorenzackermann.xyz>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibWeb/MathML/AttributeNames.h>
namespace Web::MathML::AttributeNames {
#define __ENUMERATE_MATHML_ATTRIBUTE(name, attribute) \
FlyString name = attribute##_fly_string;
ENUMERATE_MATHML_ATTRIBUTES
#undef __ENUMERATE_MATHML_ATTRIBUTE
}