Skip to content

Commit

Permalink
Remove align attributes in img tags
Browse files Browse the repository at this point in the history
  • Loading branch information
mdneuzerling committed Aug 14, 2022
1 parent 035c489 commit 2d3847a
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: lambdr
Title: Create a Runtime for Serving Containerised R Functions on 'AWS Lambda'
Version: 1.2.1
Version: 1.2.2
Authors@R:
c(person(given = "David",
family = "Neuzerling",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# lambdr 1.2.2

* Removed all `center` attributes in `<img>` tags, in line with new CRAN policy.

# lambdr 1.2.1

* Fixed a bug that was preventing `lambdr` from identifying events coming from
Expand Down
2 changes: 1 addition & 1 deletion R/lambdr.R
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#' lambdr: Create a Runtime for Serving Containerised R Functions on AWS Lambda
#'
#' @description
#' \if{html}{\figure{lambdr.png}{options: align='right' alt='logo' width='150'}}
#' \if{html}{\figure{lambdr.png}{options: alt='logo' width='150'}}
#'
#' This package provides an R runtime for the
#' \href{https://aws.amazon.com/lambda/}{_AWS Lambda_ serverless compute
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# lambdr <img src="man/figures/lambdr.png" align="right" height="200" />
# lambdr <img src="man/figures/lambdr.png" height="200" />

<!-- badges: start -->
[![R-CMD-check](https://github.com/mdneuzerling/lambdr/workflows/R-CMD-check/badge.svg)](https://github.com/mdneuzerling/lambdr/actions)
Expand Down Expand Up @@ -41,11 +41,11 @@ to the handler function. Refer to `?lambda_config` for more information.

invocation type | implementation stage
|:---------------|:---------------------|
direct | <img src="man/figures/lifecycle-stable.svg" align="center"/>
API Gateway (REST) | <img src="man/figures/lifecycle-experimental.svg" align="center"/>
API Gateway (HTML) | <img src="man/figures/lifecycle-experimental.svg" align="center"/>
EventBridge | <img src="man/figures/lifecycle-experimental.svg" align="center"/>
SNS | <img src="man/figures/lifecycle-experimental.svg" align="center"/>
direct | <img src="man/figures/lifecycle-stable.svg"/>
API Gateway (REST) | <img src="man/figures/lifecycle-experimental.svg"/>
API Gateway (HTML) | <img src="man/figures/lifecycle-experimental.svg"/>
EventBridge | <img src="man/figures/lifecycle-experimental.svg"/>
SNS | <img src="man/figures/lifecycle-experimental.svg"/>

## Installation

Expand Down
2 changes: 1 addition & 1 deletion man/lambdr.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d3847a

Please sign in to comment.