Skip to content

Commit

Permalink
fix: Remove code-focus because obsolete
Browse files Browse the repository at this point in the history
  • Loading branch information
gabyx committed Oct 10, 2023
1 parent 880d8fb commit ffe477d
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 470 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<img src="docs/logo.svg" style="margin-right: 10pt;width:100pt" align="right">
<h1>Technical Presentations</h1>
<h1>Technical Presentation</h1>

<br>
Make technical presentations in Markdown/HTML etc.
Expand All @@ -12,6 +12,8 @@ file for design modifications.

Authors: [Gabriel Nützi](https://github.com/gabyx) and [Simon Spörri](https://github.com/simonspoerri).

Current [`revealjs`](https://github.com/hakimel/reveal.js) version: `4.6.1`

## Examples

- `npm install` -> Install all dependencies.
Expand Down
15 changes: 10 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,24 @@ <h2>Code</h2>
<section data-markdown>
<script type="text/template">
### Code Focus
<pre><code class="language-cpp stretch" data-trim contenteditable=true>
<pre><code class="language-cpp stretch" data-trim contenteditable=true data-line-numbers="|3-4|8-10" data-fragment-index="1,2">
int a = 3;
int a;
enum class C {A, B, C} b;
std::vector&lt;int&gt; c; // asd

int const * & const d;

using FuncPointer = int (*)(float); // Typ: Pointer auf Funktion.
using FuncReferenz = int (&)(float); // Typ: Referenz auf Funktion.
using Func = int(float); // Typ: Funktion.</code></pre>
<span class="fragment current-only" data-code-focus="3-4">This is now important</span>
using FuncPointer = int (*)(float); // Type: Pointer to function.
using FuncReferenz = int (&)(float); // Type: Reference to function.
using Func = int(float); // Type: Function.
</code></pre>

<span class="fragment" data-fragment-index="1">This is now important</span>

Link <a href="#/3/0/0">1</a>

<span class="fragment" data-fragment-index="2">This is now important too.</span>
</script>
</section>

Expand Down
21 changes: 0 additions & 21 deletions plugin/code-focus/LICENSE

This file was deleted.

135 changes: 0 additions & 135 deletions plugin/code-focus/README.md

This file was deleted.

63 changes: 0 additions & 63 deletions plugin/code-focus/package.json

This file was deleted.

Loading

0 comments on commit ffe477d

Please sign in to comment.