Skip to content

Commit 0c10c58

Browse files
manczak-ifxalexandruradoviciDanutAldeaJADarius
authored
Track/tock workshop added board section and Infineon logo (#11)
* add the Tock Workshop inital track * added prerequisites * fixed introduction typo * architecture WIP * added build capsule task * Small fixes This commit adds the prerequisites for `probe-rs` and adds some clarifications regarding some of the necessary actions. * fix: added list output * added test application task * nit: fixed format on list * added periodic print task * added thermistor task * Add GitHub links for the repositories * added Infineon Logo * added board section --------- Co-authored-by: Alexandru RADOVICI <alexandru.radovici@wyliodrin.com> Co-authored-by: George-Dănuț Aldea <danutz.aldea23@gmail.com> Co-authored-by: Darius-Andrei Jipa <darius.jipa@oxidos.io>
1 parent fb9881e commit 0c10c58

7 files changed

Lines changed: 2581 additions & 46 deletions

File tree

docs/tock_workshop/_category_.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"position": 7,
3+
"label": "Tock Workshop",
4+
"collapsible": true,
5+
"collapsed": true,
6+
"customProps": {
7+
"description": "TockWorld Europ's Workshop, learn how to use Tock and write drivers."
8+
}
9+
}
Lines changed: 5 additions & 0 deletions
Loading
7.55 KB
Loading

docs/tock_workshop/index.md

Lines changed: 927 additions & 0 deletions
Large diffs are not rendered by default.

docusaurus.config.ts

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import { themes as prismThemes } from 'prism-react-renderer';
22
import type { Config } from '@docusaurus/types';
33
import type * as Preset from '@docusaurus/preset-classic';
4+
import remarkMath from 'remark-math';
5+
import rehypeKatex from 'rehype-katex';
46

57
// This runs in Node.js - Don't use client-side code here (browser APIs, JSX...)
68

@@ -46,6 +48,8 @@ const config: Config = {
4648
// Remove this to remove the "edit this page" links.
4749
editUrl:
4850
'https://github.com/ipworkshop/ipworkshop.github.io/edit/main/',
51+
remarkPlugins: [remarkMath],
52+
rehypePlugins: [rehypeKatex],
4953
},
5054
blog: {
5155
showReadingTime: true,
@@ -69,6 +73,21 @@ const config: Config = {
6973
],
7074
],
7175

76+
stylesheets: [
77+
{
78+
href: 'https://cdn.jsdelivr.net/npm/katex@0.13.24/dist/katex.min.css',
79+
type: 'text/css',
80+
integrity:
81+
'sha384-odtC+0UGzzFL/6PNoE8rX/SPcQDXBJ+uRepguP4QkPCm2LBxH3FA3y+fKSiJ+AmM',
82+
crossorigin: 'anonymous',
83+
},
84+
],
85+
86+
markdown: {
87+
mermaid: true,
88+
},
89+
themes: ['@docusaurus/theme-mermaid'],
90+
7291
themeConfig: {
7392
// Replace with your project's social card
7493
image: 'img/ipworkshop-social-card.png',

0 commit comments

Comments
 (0)