SourceHighlighter.h 250 B

12345678910111213141516
  1. /*
  2. * Copyright (c) 2023, Tim Flynn <trflynn89@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/String.h>
  8. #include <AK/StringView.h>
  9. namespace WebView {
  10. String highlight_source(URL const&, StringView);
  11. }