The same, but inside a block level element: | ';
echo ''.phpversion().' | ';
echo '
';
?>
-```
+
**Please Note**: HTML and PHP embedding is disabled by default in the
configuration. If disabled, the code is displayed instead of executed.
diff --git a/tests/extra.bats b/tests/extra.bats
index 02fec88..ecb7c59 100755
--- a/tests/extra.bats
+++ b/tests/extra.bats
@@ -123,20 +123,6 @@ teardown() {
-o $OUT/sample-presentation.eisvogel.xelatex.pdf
}
-## 32x: Letter
-## https://github.com/dalibo/pandocker/issues/178
-@test "321: Generate a PDF file using the letter template" {
- skip "letter template is deprecated"
- $PANDOC --pdf-engine=xelatex --template=letter $IN/letter/letter.md -o $OUT/letter.pdf
-}
-
-
-## 33x: Leaflet
-@test "331: Generate a PDF brochure using the leaflet template" {
- skip "leaflet template is deprecated"
- $PANDOC --pdf-engine=xelatex --template=leaflet $IN/leaflet/leaflet.md -o $OUT/leaflet.pdf
-}
-
##
## 4xx: Fonts, Langages and Special Characters
##
@@ -217,25 +203,6 @@ teardown() {
## 5xx: Filters
##
-## 51x: pandoc-minted
-@test "511: Generate a TEX file using the minted filter" {
- skip "minted is deprecated"
- DIR=pandoc-minted
- $PANDOC $IN/$DIR/minted.md \
- --filter pandoc-minted \
- -o $OUT/$DIR/minted.tex
-}
-
-@test "512: Generate a PDF file using the minted filter" {
- skip "minted is deprecated"
- DIR=pandoc-minted
- $PANDOC $IN/$DIR/minted.md \
- --filter pandoc-minted \
- --pdf-engine=xelatex \
- --pdf-engine-opt=-shell-escape \
- -o $OUT/$DIR/minted.pdf
-}
-
## 52x: pandoc-include + pandoc-codeblock-include
@test "521: Generate a markdown file using the include filter" {
DIR=pandoc-include
diff --git a/ubuntu-full/Dockerfile b/ubuntu-full/Dockerfile
deleted file mode 100644
index 2bca009..0000000
--- a/ubuntu-full/Dockerfile
+++ /dev/null
@@ -1,66 +0,0 @@
-# This versions extends the buster image with :
-#
-# * International Fonts
-# * Emojis
-# https://github.com/vpetersson/docker-pandoc/blob/master/Dockerfile
-#
-FROM dalibo/pandocker:latest-ubuntu
-
-# Proxy to APT cacher: e.g. http://apt-cacher-ng.docker:3142
-ARG APT_CACHER
-
-# Set the env variables to non-interactive
-ENV DEBIAN_FRONTEND noninteractive
-ENV DEBIAN_PRIORITY critical
-ENV DEBCONF_NOWARNINGS yes
-
-#
-# Debian
-#
-SHELL ["/bin/bash", "-o", "pipefail", "-c"]
-RUN set -x && \
- # Setup a cacher to speed up build
- if [ -n "${APT_CACHER}" ] ; then \
- echo "Acquire::http::Proxy \"${APT_CACHER}\";" | tee /etc/apt/apt.conf.d/01proxy ; \
- fi; \
- apt-get -qq update && \
- apt-get -qy install --no-install-recommends \
- #
- texlive-lang-other \
- # hindi fonts
- fonts-deva \
- # persian fonts
- texlive-lang-arabic \
- fonts-farsiweb \
- # dia
- dia \
- # Noto font families with large Unicode coverage
- fonts-noto \
- fonts-noto-cjk \
- fonts-noto-cjk-extra \
- fonts-noto-color-emoji \
- fonts-noto-core \
- fonts-noto-extra \
- fonts-noto-mono \
- # clean up
- && apt-get clean && \
- rm -rf /var/lib/apt/lists/* /etc/apt/apt.conf.d/01proxy
-
-##
-## L A T E X
-##
-ADD latex_requirements.full.txt ./
-# The TexLive user mode database already set up; no need to run `tlmgr init-tree`
-RUN tlmgr install `echo $(grep -v '^#' latex_requirements.full.txt )` && \
- # update the font map
- updmap-sys
-
-
-
-##
-## E N T R Y P O I N T
-##
-VOLUME /pandoc
-WORKDIR /pandoc
-
-ENTRYPOINT ["pandoc"]