Skip to content

Commit

Permalink
readme enhanced
Browse files Browse the repository at this point in the history
  • Loading branch information
f1se4 committed Mar 19, 2021
1 parent 376e292 commit c2c60c6
Show file tree
Hide file tree
Showing 12 changed files with 31 additions and 25 deletions.
4 changes: 3 additions & 1 deletion Contents/Resources/assets/personal.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ table {
border:none !important;
border-collapse: collapse;
border-spacing: 0;
font: normal 13px Arial, sans-serif;
font: normal 11px Arial, sans-serif;
}
table thead {
border-radius: 4px;
Expand All @@ -21,6 +21,8 @@ table thead th {
color: white;
padding: 10px;
text-align: center;
font: 11px Arial, sans-serif;
font-weight: bold;
/* text-shadow: 1px 1px 1px #fff; */
}
table tbody td {
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,27 @@ I have created this template for personal use.
- Math Latex Syntax (native in iawriter 5)
- Chartist - only Bars at the moment
- Chart.js
- Plotly.js - only line at the moment
- Plotly.js

## Other features
- Nice Title Page
- Some changes over footer page adding full line
- Customized Zebra blue table


## Output

### Raw data
[Markdown Test Page](https://raw.githubusercontent.com/f1se4/fiser_iatemplate/master/test.md)

### Images of the output
![1](test-1.jpg)
![2](test-2.jpg)
![3](test-3.jpg)
![4](test-4.jpg)
![5](test-5.jpg)
![6](test-6.jpg)
![7](test-7.jpg)
![8](test-8.jpg)


[Markdown Test Page](https://raw.githubusercontent.com/f1se4/fiser_iatemplate/master/Contents/test.md)
4 changes: 4 additions & 0 deletions example.csv
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Name, Best, Average, Memory, Stable, Method
Selection sort,$n^2$,$n^2$,1,No,Selection
Insertion sort, $n$,$n^2$,1, Yes, Insertion
Shell sort,$nlogn$,$nlog^2n$,1,No,Insertion
Binary file added test-1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-2.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-3.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-5.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-6.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-7.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added test-8.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
30 changes: 8 additions & 22 deletions Contents/test.md → test.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,16 @@ class sergiiatemplate:
```

### Table
#### Usual Table
|Header |Column 1 | Column 2 | Column 3 |
|:--- |:---- |:----:| ----:|
|1. Row| is | is | is |
|2. Row| left | nicely | right |
|3. Row| aligned | centered | aligned |

#### CSV Table
/example.csv

### Mathematical
An example of math inline ${e}^{i\pi }+1=0$

Expand Down Expand Up @@ -114,7 +118,7 @@ sequenceDiagram

[Chart.js Home page](https://www.chartjs.org/)

```chartgraf
```chart-chartjs
{
"type": "pie",
"data": {
Expand Down Expand Up @@ -153,7 +157,7 @@ sequenceDiagram
### Chartist.js
[Chartist.js home page](https://gionkunz.github.io/chartist-js/)

```chartist
```chart-chartist
{
labels: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
series: [
Expand All @@ -163,27 +167,9 @@ sequenceDiagram
}
```
### Plotly.js
```plotly
```chart-plotly
{
x: [1, 2, 3, 4, 5],
y: [1, 2, 4, 8, 16]
}
```
<!--
### Flowchart.js
[Flowchart Home Page](https://flowchart.js.org/)
```flow
st=>start: Need something to be translated!
e=>end: Be happy!
cond=>condition: Are you a client or a translator?
subc=>subroutine: Why should you choose a localistar?
subt=>subroutine: Why should you become a localistar?
op=>operation: Check out how it works!
io=>inputoutput: Work together with your partner
st->cond
cond(no@client)->subc->op->io->e
cond(yes@translator)->subt->op->io->e
```
-->
```

0 comments on commit c2c60c6

Please sign in to comment.