Skip to content

Commit

Permalink
generate html
Browse files Browse the repository at this point in the history
  • Loading branch information
MoAlyousef committed Oct 29, 2023
1 parent 26533d3 commit d6b568f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions docs/Home.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};

fn main() {
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand Down Expand Up @@ -208,7 +208,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};

fn main() {
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand All @@ -217,7 +217,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>

fn main() {
let a = app::App::default();
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
a.run().unwrap();
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};

fn main() {
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand Down Expand Up @@ -208,7 +208,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};

fn main() {
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand All @@ -217,7 +217,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>

fn main() {
let a = app::App::default();
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
a.run().unwrap();
Expand Down
6 changes: 3 additions & 3 deletions docs/print.html
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ <h1 id="home"><a class="header" href="#home">Home</a></h1>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window};

fn main() {
let wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = window::Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand Down Expand Up @@ -206,7 +206,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>
<pre><pre class="playground"><code class="language-rust edition2021">use fltk::{prelude::*, window::Window};

fn main() {
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
}</code></pre></pre>
Expand All @@ -215,7 +215,7 @@ <h2 id="usage"><a class="header" href="#usage">Usage</a></h2>

fn main() {
let a = app::App::default();
let wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
let mut wind = Window::new(100, 100, 400, 300, &quot;My Window&quot;);
wind.end();
wind.show();
a.run().unwrap();
Expand Down
2 changes: 1 addition & 1 deletion docs/searchindex.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/searchindex.json

Large diffs are not rendered by default.

0 comments on commit d6b568f

Please # to comment.