Skip to content
This repository has been archived by the owner on Aug 27, 2023. It is now read-only.

Commit

Permalink
fix: utf-8 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasz.czaplinski committed Nov 17, 2019
1 parent 23d2cfb commit 8db7260
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

## [1.3.1] - 17.11.2019
### Fixed
- UTF8 characters in PDF rendering.

## [1.3.0] - 17.11.2019
### Added
- PDF rendering via LaTeX.
Expand Down
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ RUN ln -snf /usr/share/zoneinfo/Etc/UTC /etc/localtime \
&& echo "Etc/UTC" > /etc/timezone \
&& apt-get update \
&& apt-get upgrade -y \
&& apt-get install $CLOJURE_DEPS $TEX_DEPS -y \
&& apt-get install $CLOJURE_DEPS $TEX_DEPS locales -y \
&& rm -rf /var/lib/apt/lists/*

RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8

WORKDIR /usr/local/resume
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject resume "1.3.0-release-fix"
(defproject resume "1.3.1"
:description "Resume-from-org generator"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"
Expand Down
1 change: 1 addition & 0 deletions resources/templates/resume.tex
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
\documentclass{resume}

\usepackage[default]{lato}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{multicol}

Expand Down

0 comments on commit 8db7260

Please sign in to comment.