Skip to content

Commit

Permalink
support markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Nov 9, 2024
1 parent 7c13b10 commit 650d071
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion frontend/src/components/brochure/options-page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import clsx from "clsx";
import { compile } from "~/helpers/markdown";
import { humanizeText } from "./utils";

export const OptionsPage = ({
Expand All @@ -23,7 +24,7 @@ export const OptionsPage = ({
<span className="text-sm font-normal"> - {option.price}</span>
)}
</dt>
<dd>{option.description}</dd>
<dd>{compile(option.description).tree}</dd>
</div>
))}
</dl>
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/pages/brochure/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ const stats = {
};

const introduction = `
**PyCon Italia** is the official Italian event about Python, but nowadays its one of the most important pythonic events in all of Europe. More than 1000 people gather from all over the world to attend, learn, code, speak, support, and meet other fellow pythonistas in Bologna.
**PyCon Italia** is the official Italian event about Python, but nowadays it's one of the most important pythonic events in all of Europe. More than 1000 people gather from all over the world to attend, learn, code, speak, support, and meet other fellow pythonistas in Bologna.
Our care for the quality of every aspect of PyCon Italia results in a wonderful gathering for growing together.
Expand All @@ -50,7 +50,7 @@ Bologna is one of the most charming cities of Italy, and we love it. Many of our
Included in the UNESCO Creative Cities Network as a City of Music, the historic center of Bologna is a treasure trove of art and architecture.
The PyCon Italia venue is located close to the city center (~25’ walk) and many initiatives will be announced for sharing this treasure with our attendees.
The PyCon Italia venue is located close to the city center (~1h walk or ~20' bus) and many initiatives will be announced for sharing this treasure with our attendees.
`.trim(),

country: "Italy",
Expand All @@ -60,7 +60,7 @@ The PyCon Italia venue is located close to the city center (~25’ walk) and man
"https://images.unsplash.com/photo-1671794646570-cba0e7dc162b?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D",
};
const community = `
PyCon Italia is aimed at everyone in the Python community, of all skill levels, both users and programmers. It is a great meeting event: ~1000attendees are expected from all over the world. Professionals, companies and students will meet for learning, collaborate and grow together. The delegates are a mix of Python users and developers (~60%), students (~20%), PMs (~8%), researchers (~7%), CTOs (~5%) as well as individuals whose businesses rely on the use of Python.
PyCon Italia is aimed at everyone in the Python community, of all skill levels, both users and programmers. It is a great meeting event: ~1000 attendees are expected from all over the world. Professionals, companies and students will meet for learning, collaborate and grow together. The delegates are a mix of Python users and developers (~60%), students (~20%), PMs (~8%), researchers (~7%), CTOs (~5%) as well as individuals whose businesses rely on the use of Python.
`.trim();

const whySponsor = {
Expand Down

0 comments on commit 650d071

Please sign in to comment.