| id | sidebar_position | title | sidebar_label | description | tags | |||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
our-documentation.md |
3 |
How to add Tutorials |
Documentation Guidelines |
This documentation is intended to help you get started with recode hive and to provide you with a comprehensive guide to the features and functionality of the platform. This is a place to learn about technology, programming, web development, data science, and more. |
|
```mermaid
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;
```<Tabs>
<TabItem value="apple" label="Apple" default>
This is an apple 🍎
</TabItem>
<TabItem value="orange" label="Orange">
This is an orange 🍊
</TabItem>
<TabItem value="banana" label="Banana">
This is a banana 🍌
</TabItem>
</Tabs>```jsx live
function Clock(props) {
const [date, setDate] = useState(new Date());
useEffect(() => {
const timerID = setInterval(() => tick(), 1000);
return function cleanup() {
clearInterval(timerID);
};
});
function tick() {
setDate(new Date());
}
return (
<div>
<h2>It is {date.toLocaleTimeString()}.</h2>
</div>
);
}
```<BrowserWindow minHeight={300} bodyStyle={{padding: 0}}>
function Clock(props) {
const [date, setDate] = useState(new Date());
useEffect(() => {
const timerID = setInterval(() => tick(), 1000);
return function cleanup() {
clearInterval(timerID);
};
});
function tick() {
setDate(new Date());
}
return (
<div>
<h2>It is {date.toLocaleTimeString()}.</h2>
</div>
);
}<Tabs>
<TabItem value="js" label="JavaScript">
```js
function helloWorld() {
console.log("Hello, world!");
}
```
</TabItem>
<TabItem value="py" label="Python">
```py
def hello_world():
print("Hello, world!")
```
</TabItem>
<TabItem value="java" label="Java">
```java
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
```
</TabItem>
<TabItem value="c" label="C">
```c
#include <stdio.h>
int main() {
printf("Hello, World\n");
return 0;
}
```
</TabItem>
</Tabs>function helloWorld() {
console.log("Hello, world!");
}def hello_world():
print("Hello, world!")class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}#include <stdio.h>
int main() {
printf("Hello, World\n");
return 0;
} <BrowserWindow minHeight={300}>
<img src="https://github.com/Ajay-Dhangar.png" width="150" /> <br />
<button onClick={() => alert('Hello, world!')}>Click Me</button>
</BrowserWindow>alert('Hello, world!')}>Click Me
```jsx {1,4-6,11}
import React from "react";
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```<BrowserWindow minHeight={300} bodyStyle={{padding: 0}}> ```jsx {1,4-6,11} import React from "react";
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```
```jsx {1,4-6,11} showLineNumbers
import React from "react";
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```<BrowserWindow minHeight={300} bodyStyle={{padding: 0}}> ```jsx {1,4-6,11} showLineNumbers import React from "react";
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
```
Math equations are rendered using KaTeX. You can write inline math equations or block equations using LaTeX.
Write inline math equations by wrapping LaTeX equations between $:
Let $f\colon[a,b]\to\R$ be Riemann integrable. Let $F\colon[a,b]\to\R$ be
$F(x)=\int_{a}^{x} f(t)\,dt$. Then $F$ is continuous, and at all $x$ such that
$f$ is continuous at $x$, $F$ is differentiable at $x$ with $F'(x)=f(x)$.Let
For equation block or display mode, use line breaks and $$:
$$
I = \int_0^{2\pi} \sin(x)\,dx
$$:::warning
Beware of the dark side.
::::::danger
I find your lack of faith disturbing.
::::::info
Luke, I am your father.
::::::success
The Force will be with you, always.
::::::caution
This is a caution admonition
::::::note
This is a note admonition
::::::tip
This is a tip admonition
::::::important
This is an important admonition
:::