mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-21 21:52:10 +02:00

- Migrate all getting_started from html to adoc - Document (in README.md) notes on migrating html to adoc - Reorganize generation of adoc slightly so that - all directories can be generates at once - output suffix changed to htm so that migrated files exist at the same URL on help.eclipse.org - Add generation to the cleanliness checks to ensure that the html matches adoc - Manage the adoc headers with a script as that is a large section of copy-pasted code on each adoc file (see README + adoc-headers.txt) - Move maven version info to pluginManagement (consistency with other maven plug-ins) - New profile "asciidoc-auto-refresh" which will auto build the files as edited. Prerequisite of #992
29 lines
895 B
Text
29 lines
895 B
Text
////
|
|
Copyright (c) 2000, 2025 Contributors to the Eclipse Foundation
|
|
This program and the accompanying materials
|
|
are made available under the terms of the Eclipse Public License 2.0
|
|
which accompanies this distribution, and is available at
|
|
https://www.eclipse.org/legal/epl-2.0/
|
|
|
|
SPDX-License-Identifier: EPL-2.0
|
|
////
|
|
|
|
// pull in shared headers, footers, etc
|
|
:docinfo: shared
|
|
|
|
// support image rendering and table of contents within GitHub
|
|
ifdef::env-github[]
|
|
:imagesdir: ../../images
|
|
:toc:
|
|
:toc-placement!:
|
|
endif::[]
|
|
|
|
// enable support for button, menu and keyboard macros
|
|
:experimental:
|
|
|
|
// Until ENDOFHEADER the content must match adoc-headers.txt for consistency,
|
|
// this is checked by the build in do_generate_asciidoc.sh, which also ensures
|
|
// that the checked in html is up to date.
|
|
// do_generate_asciidoc.sh can also be used to apply this header to all the
|
|
// adoc files.
|
|
// ENDOFHEADER
|