-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
documentation/doxygen: test that direct HTML embedding works.
It should since 1.8.18.
- Loading branch information
Showing
8 changed files
with
57 additions
and
11 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
31 changes: 31 additions & 0 deletions
31
documentation/test_doxygen/contents_htmlonly_htmlinclude/html-only.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>The htmlonly command | My Project</title> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600" /> | ||
<link rel="stylesheet" href="m-dark+documentation.compiled.css" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
</head> | ||
<body> | ||
<header><nav id="navigation"> | ||
<div class="m-container"> | ||
<div class="m-row"> | ||
<a href="index.html" id="m-navbar-brand" class="m-col-t-8 m-col-m-none m-left-m">My Project</a> | ||
</div> | ||
</div> | ||
</nav></header> | ||
<main><article> | ||
<div class="m-container m-container-inflatable"> | ||
<div class="m-row"> | ||
<div class="m-col-l-10 m-push-l-1"> | ||
<h1> | ||
The htmlonly command | ||
</h1> | ||
<p>Works only since Doxygen 1.8.18, before it was not included in the XML output.</p><iframe style="width: 500px; height: 500px;" src="https://mcss.mosra.cz"> | ||
</div> | ||
</div> | ||
</div> | ||
</article></main> | ||
</body> | ||
</html> |
File renamed without changes.
18 changes: 18 additions & 0 deletions
18
documentation/test_doxygen/contents_htmlonly_htmlinclude/input.dox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/** @mainpage | ||
|
||
@htmlinclude file.html | ||
*/ | ||
|
||
/** @page html-only The htmlonly command | ||
|
||
Works only since Doxygen 1.8.18, before it was not included in the XML output. | ||
|
||
@htmlonly | ||
<iframe style="width: 500px; height: 500px;" src="https://mcss.mosra.cz"> | ||
@endhtmlonly | ||
*/ | ||
|
||
/** @page warnings This will produce a warning | ||
|
||
@htmlinclude nonexistent.html | ||
*/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters