Skip to content

Commit daa948f

Browse files
author
larbamu2
committed
fix logo style in pkgdown site
1 parent c1e2d57 commit daa948f

File tree

3 files changed

+29
-27
lines changed

3 files changed

+29
-27
lines changed

README.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ knitr::opts_chunk$set(
1818
htmltools::tagList(rmarkdown::html_dependency_font_awesome())
1919
```
2020

21-
# tidymodules <img src="man/figures/logo.svg" align="right" height="139" />
21+
# tidymodules <img src="man/figures/logo.svg" style="float:right; height:139px;" />
2222

23-
[![Travis-CI build status](https://travis-ci.org/Novartis/tidymodules.svg?branch=master)](https://travis-ci.org/Novartis/tidymodules)
23+
[![build status](https://github.com/Novartis/tidymodules/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/Novartis/tidymodules/actions)
2424
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
2525

2626
The `{tidymodules}` R package is built on top of shiny module using `{R6}` to provide a new object-oriented programming (OOP) approach for module development, new module interface using input/output ports and a set of tidy operators for handling cross-module communication.

README.md

Lines changed: 26 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<!-- README.md is generated from README.Rmd. Please edit that file -->
2-
tidymodules <img src="man/figures/logo.svg" align="right" height="139" />
3-
=========================================================================
42

5-
[![Travis-CI build
6-
status](https://travis-ci.org/Novartis/tidymodules.svg?branch=master)](https://travis-ci.org/Novartis/tidymodules)
3+
# tidymodules <img src="man/figures/logo.svg" style="float:right; height:139px;" />
4+
5+
[![build
6+
status](https://github.com/Novartis/tidymodules/actions/workflows/pkgdown.yaml/badge.svg)](https://github.com/Novartis/tidymodules/actions)
77
[![lifecycle](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental)
88

99
The `{tidymodules}` R package is built on top of shiny module using
@@ -31,51 +31,57 @@ Shiny modules are presented in the table below.
3131
</thead>
3232
<tbody>
3333
<tr class="odd">
34-
<td><a href="articles/intro.html"><i style="color:#285fa4;" class="fas fa-laptop-code fa-2x"></i></a></td>
34+
<td><a
35+
href="articles/intro.html"><i style="color:#285fa4;" class="fas fa-laptop-code fa-2x"></i></a></td>
3536
<td>Programming style</td>
3637
<td>- <code>{R6}</code> OOP * <br/> - Semantic reference</td>
3738
<td>Functional</td>
3839
</tr>
3940
<tr class="even">
40-
<td><a href="articles/namespace.html"><i style="color:#285fa4;" class="fas fa-th-large fa-2x"></i></a></td>
41+
<td><a
42+
href="articles/namespace.html"><i style="color:#285fa4;" class="fas fa-th-large fa-2x"></i></a></td>
4143
<td>Namespace management</td>
4244
<td>- automatic/generated <br/> - ID based lookup <br/> - Grouping</td>
4345
<td>- manual management <br /> - must match between ui and server</td>
4446
</tr>
4547
<tr class="odd">
46-
<td><a href="articles/communication.html"><i style="color:#285fa4;" class="fas fa-directions fa-2x"></i></a></td>
48+
<td><a
49+
href="articles/communication.html"><i style="color:#285fa4;" class="fas fa-directions fa-2x"></i></a></td>
4750
<td>Module communication</td>
48-
<td>- new module input/output port structure <br/> - module ports linked via tidy operators <br/> - automatic network diagram</td>
49-
<td>- parameter passing via module server() <br/> - challenging to manage for complex app</td>
51+
<td>- new module input/output port structure <br/> - module ports linked
52+
via tidy operators <br/> - automatic network diagram</td>
53+
<td>- parameter passing via module server() <br/> - challenging to
54+
manage for complex app</td>
5055
</tr>
5156
<tr class="even">
52-
<td><a href="articles/inheritance.html"><i style="color:#285fa4;" class="fas fa-sitemap fa-2x"></i></a></td>
57+
<td><a
58+
href="articles/inheritance.html"><i style="color:#285fa4;" class="fas fa-sitemap fa-2x"></i></a></td>
5359
<td>Inheritance</td>
5460
<td>- class inheritance <br/> - port inheritance for nested modules</td>
5561
<td>NA</td>
5662
</tr>
5763
<tr class="odd">
58-
<td><a href="articles/session.html"><i style="color:#285fa4;" class="fas fa-users fa-2x"></i></a></td>
64+
<td><a
65+
href="articles/session.html"><i style="color:#285fa4;" class="fas fa-users fa-2x"></i></a></td>
5966
<td>Session management</td>
60-
<td>- flexible user session management <br/> - Caching of modules coming soon</td>
67+
<td>- flexible user session management <br/> - Caching of modules coming
68+
soon</td>
6169
<td>NA</td>
6270
</tr>
6371
</tbody>
6472
</table>
6573

6674
\* OOP = Object Oriented Programming
6775

68-
Installation
69-
------------
76+
## Installation
7077

7178
You can install the most recent version of `{tidymodules}` from
7279
[GitHub](https://github.com/Novartis/tidymodules) with:
7380

7481
library(devtools)
7582
install_github("Novartis/tidymodules")
7683

77-
Examples
78-
--------
84+
## Examples
7985

8086
You can quickly launch an example after installing the R package by
8187
running the following.
@@ -93,8 +99,7 @@ Some examples have been deployed on shinyapp.io, such as:
9399
- Example 4: [Module communication
94100
<i class="fas fa-rocket"></i>](https://tidymodules.shinyapps.io/4_communication/)
95101

96-
Learning More
97-
-------------
102+
## Learning More
98103

99104
Please review the [Get
100105
Started](https://opensource.nibr.com/tidymodules/articles/tidymodules.html)
@@ -104,15 +109,13 @@ developing Shiny apps.
104109
If you are interested to develop modules using `{tidymodules}`, we
105110
recommend reading the vignettes under “Articles”.
106111

107-
Code of Conduct
108-
---------------
112+
## Code of Conduct
109113

110114
Please note that the `{tidymodules}` is released with a [Contributor
111115
Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project,
112116
you agree to abide by its terms.
113117

114-
Acknowledgment
115-
--------------
118+
## Acknowledgment
116119

117120
- The SCC team members @ NVS for their valuable feedbacks
118121
- 2019 Summer interns (Marzi, Stephen and Renan) for contributing to
@@ -122,8 +125,7 @@ Acknowledgment
122125
[e-poster](https://rpodcast.shinyapps.io/highlights-shiny) @
123126
rstudio::conf 2020
124127

125-
Licence
126-
-------
128+
## Licence
127129

128130
Copyright 2020 Novartis AG
129131

vignettes/tidymodules.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ knitr::opts_chunk$set(
1717
)
1818
```
1919

20-
## Overview
20+
## Overview <img src="../man/figures/logo.svg" style="float:right; height:139px;" />
2121

2222
This vignette aims to provide a high level introduction to tidymodules. We recommend reading this article for anyone who is new to tidymodules, especially those tidymodules module "consumers", who use existing module classes as a "black-box" in their Shiny app development. This article includes the following topics:
2323

0 commit comments

Comments
 (0)