Skip to content

Commit c2504fb

Browse files
Deployed 4ab46c6 to latest with MkDocs 1.6.1 and mike 2.1.3
1 parent cbccafa commit c2504fb

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

latest/build_settings/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -701,10 +701,10 @@ <h3 id="platform-profile-map"><code>platform profile map</code></h3>
701701
<li>Type: <code>Platforms Map With Profiles Map</code></li>
702702
<li>Description: A map of platforms with a map of profiles. </li>
703703
</ul>
704-
<div class="admonition todo">
705-
<p class="admonition-title">Todo</p>
704+
<details class="todo">
705+
<summary>Todo</summary>
706706
<p>If platform and profile are not specified, the default platform and profile are used.</p>
707-
</div>
707+
</details>
708708
<details class="example" open="open">
709709
<summary>Example</summary>
710710
<div class="language-yaml highlight"><pre><span></span><code><span id="__span-0-1"><a id="__codelineno-0-1" name="__codelineno-0-1" href="#__codelineno-0-1"></a><span class="nt">Windows</span><span class="p">:</span>

latest/guides/basic_concepts/index.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -688,7 +688,10 @@ <h3 id="list-of-platforms">List Of Platforms</h3>
688688
<li>MacOS</li>
689689
<li>Unix (applies to Linux and MacOS)</li>
690690
</ul>
691-
<p>Custom platforms are currently <strong>not supported</strong> but planned for the future.</p>
691+
<details class="todo">
692+
<summary>Todo</summary>
693+
<p>Custom platforms</p>
694+
</details>
692695
<h3 id="default-profiles">Default Profiles</h3>
693696
<p>The default user configuration includes two compiler profiles:</p>
694697
<ul>
@@ -736,8 +739,8 @@ <h3 id="specifying-platformprofile-dependent-settings">Specifying Platform/Profi
736739
When using g++, only <code>-O2</code> will be used.
737740
When using any other profile, only <code>-Wall</code> will be used, not <code>-Wall -O2</code>.</p>
738741
</div>
739-
<details>
740-
<summary>Skipping DefaultPlatform and DefaultProfile <strong>(WIP)</strong></summary>
742+
<details class="todo">
743+
<summary>Todo</summary>
741744
<p>If you have a setting that <strong>only</strong> has DefaultPlatform and DefaultProfile, you can directly
742745
specify the settings without listing it under DefaultPlatform and DefaultProfile.</p>
743746
<p>For example:

latest/guides/building_project_sources/index.html

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -791,10 +791,9 @@ <h3 id="mixing-c-and-c-files">Mixing C And C++ Files</h3>
791791
<p class="admonition-title">Note</p>
792792
<p>This is different from other build systems like CMake where it will use the c compiler for c
793793
files and the c++ compiler for c++ files. </p>
794-
<p>If you need the same behavior, you will need to create a script file for building the c files
795-
as if it is a standalone library first</p>
796-
<details class="example">
797-
<summary>Example</summary>
794+
<details class="todo">
795+
<summary>Todo</summary>
796+
<p>If you need the same behavior, you will need to create a script file for building the c files as if it is a standalone library first</p>
798797
<div class="language-text highlight"><span class="filename">Project Structure</span><pre><span></span><code><span id="__span-6-1"><a id="__codelineno-6-1" name="__codelineno-6-1" href="#__codelineno-6-1"></a>project/
799798
</span><span id="__span-6-2"><a id="__codelineno-6-2" name="__codelineno-6-2" href="#__codelineno-6-2"></a>├── main.cpp
800799
</span><span id="__span-6-3"><a id="__codelineno-6-3" name="__codelineno-6-3" href="#__codelineno-6-3"></a>├── main.yaml
@@ -823,10 +822,10 @@ <h3 id="mixing-c-and-c-files">Mixing C And C++ Files</h3>
823822
</span><span id="__span-7-14"><a id="__codelineno-7-14" name="__codelineno-7-14" href="#__codelineno-7-14"></a><span class="cp">#include</span><span class="w"> </span><span class="cpf">&quot;utils.h&quot;</span>
824823
</span><span id="__span-7-15"><a id="__codelineno-7-15" name="__codelineno-7-15" href="#__codelineno-7-15"></a><span class="kt">int</span><span class="w"> </span><span class="nf">add</span><span class="p">(</span><span class="kt">int</span><span class="w"> </span><span class="n">a</span><span class="p">,</span><span class="w"> </span><span class="kt">int</span><span class="w"> </span><span class="n">b</span><span class="p">)</span><span class="w"> </span><span class="p">{</span><span class="w"> </span><span class="k">return</span><span class="w"> </span><span class="n">a</span><span class="w"> </span><span class="o">+</span><span class="w"> </span><span class="n">b</span><span class="p">;</span><span class="w"> </span><span class="p">}</span>
825824
</span></code></pre></div>
826-
<div class="admonition todo">
827-
<p class="admonition-title">Todo</p>
825+
<details class="todo">
826+
<summary>Todo</summary>
828827
<p>If the original utils.c or math.c is modified, the build will not be triggered. Have the option to use symlink for the contents of the local directory.</p>
829-
</div>
828+
</details>
830829
<div class="language-yaml highlight"><span class="filename">main.yaml</span><pre><span></span><code><span id="__span-8-1"><a id="__codelineno-8-1" name="__codelineno-8-1" href="#__codelineno-8-1"></a><span class="nt">Dependencies</span><span class="p">:</span>
831830
</span><span id="__span-8-2"><a id="__codelineno-8-2" name="__codelineno-8-2" href="#__codelineno-8-2"></a><span class="p p-Indicator">-</span><span class="w"> </span><span class="nt">Name</span><span class="p">:</span><span class="w"> </span><span class="s">&quot;utils&quot;</span>
832831
</span><span id="__span-8-3"><a id="__codelineno-8-3" name="__codelineno-8-3" href="#__codelineno-8-3"></a><span class="w"> </span><span class="nt">Source</span><span class="p">:</span>

latest/search/search_index.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)