diff --git a/_posts/old/2015-03-15-formatting-and-links.md b/_posts/old/2015-03-15-formatting-and-links.md deleted file mode 100644 index 0962756d..00000000 --- a/_posts/old/2015-03-15-formatting-and-links.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -layout: post -title: a post with formatting and links -date: 2015-03-15 16:40:16 -description: march & april, looking forward to summer -tags: formatting links -categories: sample-posts ---- - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. [Pinterest](https://www.pinterest.com) DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -#### Hipster list - -- brunch -- fixie -- raybans -- messenger bag - -#### Check List - -- [x] Brush Teeth -- [ ] Put on socks - - [x] Put on left sock - - [ ] Put on right sock -- [x] Go to school - -Hoodie Thundercats retro, tote bag 8-bit Godard craft beer gastropub. Truffaut Tumblr taxidermy, raw denim Kickstarter sartorial dreamcatcher. Quinoa chambray slow-carb salvia readymade, bicycle rights 90's yr typewriter selfies letterpress cardigan vegan. - -
- -Pug heirloom High Life vinyl swag, single-origin coffee four dollar toast taxidermy reprehenderit fap distillery master cleanse locavore. Est anim sapiente leggings Brooklyn ea. Thundercats locavore excepteur veniam eiusmod. Raw denim Truffaut Schlitz, migas sapiente Portland VHS twee Bushwick Marfa typewriter retro id keytar. - -> We do not grow absolutely, chronologically. We grow sometimes in one dimension, and not in another, unevenly. We grow partially. We are relative. We are mature in one realm, childish in another. -> —Anais Nin - -Fap aliqua qui, scenester pug Echo Park polaroid irony shabby chic ex cardigan church-key Odd Future accusamus. Blog stumptown sartorial squid, gastropub duis aesthetic Truffaut vero. Pinterest tilde twee, odio mumblecore jean shorts lumbersexual. diff --git a/_posts/old/2015-05-15-images.md b/_posts/old/2015-05-15-images.md deleted file mode 100644 index 61f687f8..00000000 --- a/_posts/old/2015-05-15-images.md +++ /dev/null @@ -1,49 +0,0 @@ ---- -layout: post -title: a post with images -date: 2015-05-15 21:01:00 -description: this is what included images could look like -tags: formatting images -categories: sample-posts -thumbnail: assets/img/9.jpg ---- - -This is an example post with image galleries. - -
-
- {% include figure.liquid loading="eager" path="assets/img/9.jpg" class="img-fluid rounded z-depth-1" %} -
-
- {% include figure.liquid loading="eager" path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" %} -
-
-
- A simple, elegant caption looks good between image rows, after each row, or doesn't have to be there at all. -
- -Images can be made zoomable. -Simply add `data-zoomable` to `` tags that you want to make zoomable. - -
-
- {% include figure.liquid loading="eager" path="assets/img/8.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid loading="eager" path="assets/img/10.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- -The rest of the images in this post are all zoomable, arranged into different mini-galleries. - -
-
- {% include figure.liquid path="assets/img/11.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
- {% include figure.liquid path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" zoomable=true %} -
-
diff --git a/_posts/old/2015-07-15-code.md b/_posts/old/2015-07-15-code.md deleted file mode 100644 index c721ec96..00000000 --- a/_posts/old/2015-07-15-code.md +++ /dev/null @@ -1,100 +0,0 @@ ---- -layout: post -title: a post with code -date: 2015-07-15 15:09:00 -description: an example of a blog post with some code -tags: formatting code -categories: sample-posts -featured: true ---- - -This theme implements a built-in Jekyll feature, the use of Rouge, for syntax highlighting. -It supports more than 100 languages. -This example is in C++. -All you have to do is wrap your code in markdown code tags: - -````markdown -```c++ -code code code -``` -```` - -```c++ -int main(int argc, char const \*argv[]) -{ - string myString; - - cout << "input a string: "; - getline(cin, myString); - int length = myString.length(); - - char charArray = new char * [length]; - - charArray = myString; - for(int i = 0; i < length; ++i){ - cout << charArray[i] << " "; - } - - return 0; -} -``` - -For displaying code in a list item, you have to be aware of the indentation, as stated in this [Stackoverflow answer](https://stackoverflow.com/questions/34987908/embed-a-code-block-in-a-list-item-with-proper-indentation-in-kramdown/38090598#38090598). You must indent your code by **(3 \* bullet_indent_level)** spaces. This is because kramdown (the markdown engine used by Jekyll) indentation for the code block in lists is determined by the column number of the first non-space character after the list item marker. For example: - -````markdown -1. We can put fenced code blocks inside nested bullets, too. - - 1. Like this: - - ```c - printf("Hello, World!"); - ``` - - 2. The key is to indent your fenced block in the same line as the first character of the line. -```` - -Which displays: - -1. We can put fenced code blocks inside nested bullets, too. - - 1. Like this: - - ```c - printf("Hello, World!"); - ``` - - 2. The key is to indent your fenced block in the same line as the first character of the line. - -By default, it does not display line numbers. If you want to display line numbers for every code block, you can set `kramdown.syntax_highlighter_opts.block.line_numbers` to true in your `_config.yml` file. - -If you want to display line numbers for a specific code block, all you have to do is wrap your code in a liquid tag: - -{% raw %} -{% highlight c++ linenos %}
code code code
{% endhighlight %} -{% endraw %} - -The keyword `linenos` triggers display of line numbers. -Produces something like this: - -{% highlight c++ linenos %} - -int main(int argc, char const \*argv[]) -{ -string myString; - - cout << "input a string: "; - getline(cin, myString); - int length = myString.length(); - - char charArray = new char * [length]; - - charArray = myString; - for(int i = 0; i < length; ++i){ - cout << charArray[i] << " "; - } - - return 0; - -} - -{% endhighlight %} diff --git a/_posts/old/2015-10-20-disqus-comments.md b/_posts/old/2015-10-20-disqus-comments.md deleted file mode 100644 index cf538840..00000000 --- a/_posts/old/2015-10-20-disqus-comments.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: post -title: a post with disqus comments -date: 2015-10-20 11:59:00-0400 -description: an example of a blog post with disqus comments -tags: comments -categories: sample-posts external-services -disqus_comments: true -related_posts: false ---- - -This post shows how to add DISQUS comments. diff --git a/_posts/old/2015-10-20-math.md b/_posts/old/2015-10-20-math.md deleted file mode 100644 index 9ef0657b..00000000 --- a/_posts/old/2015-10-20-math.md +++ /dev/null @@ -1,29 +0,0 @@ ---- -layout: post -title: a post with math -date: 2015-10-20 11:12:00-0400 -description: an example of a blog post with some math -tags: formatting math -categories: sample-posts -related_posts: false ---- - -This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine. You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`. If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$. - -To use display mode, again surround your expression with `$$` and place it as a separate paragraph. Here is an example: - -$$ -\sum_{k=1}^\infty |\langle x, e_k \rangle|^2 \leq \|x\|^2 -$$ - -You can also use `\begin{equation}...\end{equation}` instead of `$$` for display mode math. -MathJax will automatically number equations: - -\begin{equation} -\label{eq:cauchy-schwarz} -\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) -\end{equation} - -and by adding `\label{...}` inside the equation environment, we can now refer to the equation using `\eqref`. - -Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php). diff --git a/_posts/old/2018-12-22-distill.md b/_posts/old/2018-12-22-distill.md deleted file mode 100644 index dbf1ec58..00000000 --- a/_posts/old/2018-12-22-distill.md +++ /dev/null @@ -1,1436 +0,0 @@ ---- -layout: distill -title: a distill-style blog post -description: an example of a distill-style blog post and main elements -tags: distill formatting -giscus_comments: true -date: 2021-05-22 -featured: true -mermaid: - enabled: true - zoomable: true -code_diff: true -map: true -chart: - chartjs: true - echarts: true - vega_lite: true -tikzjax: true -typograms: true - -authors: - - name: Albert Einstein - url: "https://en.wikipedia.org/wiki/Albert_Einstein" - affiliations: - name: IAS, Princeton - - name: Boris Podolsky - url: "https://en.wikipedia.org/wiki/Boris_Podolsky" - affiliations: - name: IAS, Princeton - - name: Nathan Rosen - url: "https://en.wikipedia.org/wiki/Nathan_Rosen" - affiliations: - name: IAS, Princeton - -bibliography: 2018-12-22-distill.bib - -# Optionally, you can add a table of contents to your post. -# NOTES: -# - make sure that TOC names match the actual section names -# for hyperlinks within the post to work correctly. -# - we may want to automate TOC generation in the future using -# jekyll-toc plugin (https://github.com/toshimaru/jekyll-toc). -toc: - - name: Equations - # if a section has subsections, you can add them as follows: - # subsections: - # - name: Example Child Subsection 1 - # - name: Example Child Subsection 2 - - name: Citations - - name: Footnotes - - name: Code Blocks - - name: Interactive Plots - - name: Mermaid - - name: Diff2Html - - name: Leaflet - - name: Chartjs, Echarts and Vega-Lite - - name: TikZ - - name: Typograms - - name: Layouts - - name: Other Typography? - -# Below is an example of injecting additional post-specific styles. -# If you use this post as a template, delete this _styles block. -_styles: > - .fake-img { - background: #bbb; - border: 1px solid rgba(0, 0, 0, 0.1); - box-shadow: 0 0px 4px rgba(0, 0, 0, 0.1); - margin-bottom: 12px; - } - .fake-img p { - font-family: monospace; - color: white; - text-align: left; - margin: 12px 0; - text-align: center; - font-size: 16px; - } ---- - -## Equations - -This theme supports rendering beautiful math in inline and display modes using [MathJax 3](https://www.mathjax.org/) engine. -You just need to surround your math expression with `$$`, like `$$ E = mc^2 $$`. -If you leave it inside a paragraph, it will produce an inline expression, just like $$ E = mc^2 $$. - -In fact, you can also use a single dollar sign `$` to create inline formulas, such as `$ E = mc^2 $`, which will render as $ E = mc^2 $. This approach provides the same effect during TeX-based compilation, but visually it appears slightly less bold compared to double-dollar signs `$$`, making it blend more naturally with surrounding text. - -To use display mode, again surround your expression with `$$` and place it as a separate paragraph. -Here is an example: - -$$ -\left( \sum_{k=1}^n a_k b_k \right)^2 \leq \left( \sum_{k=1}^n a_k^2 \right) \left( \sum_{k=1}^n b_k^2 \right) -$$ - -Note that MathJax 3 is [a major re-write of MathJax](https://docs.mathjax.org/en/latest/upgrading/whats-new-3.0.html) that brought a significant improvement to the loading and rendering speed, which is now [on par with KaTeX](http://www.intmath.com/cg5/katex-mathjax-comparison.php). - ---- - -## Citations - -Citations are then used in the article body with the `` tag. -The key attribute is a reference to the id provided in the bibliography. -The key attribute can take multiple ids, separated by commas. - -The citation is presented inline like this: (a number that displays more information on hover). -If you have an appendix, a bibliography is automatically created and populated in it. - -Distill chose a numerical inline citation style to improve readability of citation dense articles and because many of the benefits of longer citations are obviated by displaying more information on hover. -However, we consider it good style to mention author last names if you discuss something at length and it fits into the flow well — the authors are human and it’s nice for them to have the community associate them with their work. - ---- - -## Footnotes - -Just wrap the text you would like to show up in a footnote in a `` tag. -The number of the footnote will be automatically generated.This will become a hoverable footnote. - ---- - -## Code Blocks - -Syntax highlighting is provided within `` tags. -An example of inline code snippets: `let x = 10;`. -For larger blocks of code, add a `block` attribute: - - - var x = 25; - function(x) { - return x * x; - } - - -**Note:** `` blocks do not look good in the dark mode. -You can always use the default code-highlight using the `highlight` liquid tag: - -{% highlight javascript %} -var x = 25; -function(x) { -return x \* x; -} -{% endhighlight %} - ---- - -## Interactive Plots - -You can add interative plots using plotly + iframes :framed_picture: - -
- -
- -The plot must be generated separately and saved into an HTML file. -To generate the plot that you see above, you can use the following code snippet: - -{% highlight python %} -import pandas as pd -import plotly.express as px -df = pd.read_csv( -'https://raw.githubusercontent.com/plotly/datasets/master/earthquakes-23k.csv' -) -fig = px.density_mapbox( -df, -lat='Latitude', -lon='Longitude', -z='Magnitude', -radius=10, -center=dict(lat=0, lon=180), -zoom=0, -mapbox_style="stamen-terrain", -) -fig.show() -fig.write_html('assets/plotly/demo.html') -{% endhighlight %} - ---- - -## Details boxes - -Details boxes are collapsible boxes which hide additional information from the user. They can be added with the `details` liquid tag: - -{% details Click here to know more %} -Additional details, where math $$ 2x - 1 $$ and `code` is rendered correctly. -{% enddetails %} - ---- - -## Mermaid - -This theme supports creating diagrams directly in markdown using [Mermaid](https://mermaid.js.org/). Mermaid enables users to render flowcharts, sequence diagrams, class diagrams, Gantt charts, and more. Simply embed the diagram syntax within a mermaid code block. - -To create a Gantt chart, you can use the following syntax: - -````markdown -```mermaid -gantt - dateFormat YYYY-MM-DD - title A Gantt Diagram - - section Section - Task A :a1, 2025-01-01, 30d - Task B :after a1, 20d - Task C :2025-01-10, 12d -``` -```` - -And here’s how it will be rendered: - -```mermaid -gantt - dateFormat YYYY-MM-DD - title A Gantt Diagram - - section Section - Task A :a1, 2025-01-01, 30d - Task B :after a1, 20d - Task C :2025-01-10, 12d -``` - -Similarly, you can also use it to create beautiful class diagrams: - -```` -```mermaid -classDiagram -direction LR - class Animal { - +String species - +int age - +makeSound() - } - class Dog { - +String breed - +bark() - } - class Cat { - +String color - +meow() - } - class Bird { - +String wingSpan - +fly() - } - class Owner { - +String name - +int age - +adoptAnimal(Animal animal) - } - - Animal <|-- Dog - Animal <|-- Cat - Animal <|-- Bird - Owner "1" --> "0..*" Animal - - Dog : +fetch() - Cat : +purr() - Bird : +sing() -``` -```` - -It will be presented as: - -```mermaid -classDiagram -direction LR - class Animal { - +String species - +int age - +makeSound() - } - class Dog { - +String breed - +bark() - } - class Cat { - +String color - +meow() - } - class Bird { - +String wingSpan - +fly() - } - class Owner { - +String name - +int age - +adoptAnimal(Animal animal) - } - - Animal <|-- Dog - Animal <|-- Cat - Animal <|-- Bird - Owner "1" --> "0..*" Animal - - Dog : +fetch() - Cat : +purr() - Bird : +sing() -``` - -With Mermaid, you can easily add clear and dynamic diagrams to enhance your blog content. - ---- - -## Diff2Html - -This theme also supports integrating [Diff2Html](https://github.com/rtfpessoa/diff2html), a tool that beautifully renders code differences (diffs) directly in markdown. Diff2Html is ideal for showcasing code changes, allowing you to clearly present additions, deletions, and modifications. It’s perfect for code reviews, documentation, and tutorials where step-by-step code changes need to be highlighted—you can even introduce changes across multiple files at once. - -````markdown -```diff2html -diff --git a/utils/mathUtils.js b/utils/mathUtils.js -index 3b5f3d1..c7f9b2e 100644 ---- a/utils/mathUtils.js -+++ b/utils/mathUtils.js -@@ -1,8 +1,12 @@ --// Basic math utilities -+// Extended math utilities with additional functions - --export function calculateArea(radius) { -- const PI = 3.14159; -+export function calculateCircleMetrics(radius) { -+ const PI = Math.PI; - const area = PI * radius ** 2; -+ const circumference = 2 * PI * radius; -+ -+ if (!isValidRadius(radius)) throw new Error("Invalid radius"); -+ - return { area, circumference }; - } - --export function validateRadius(radius) { -+export function isValidRadius(radius) { - return typeof radius === 'number' && radius > 0; - } - -diff --git a/main.js b/main.js -index 5f6a9c3..b7d4e8f 100644 ---- a/main.js -+++ b/main.js -@@ -2,9 +2,12 @@ - import { calculateCircleMetrics } from './utils/mathUtils'; - --function displayCircleMetrics(radius) { -- const { area } = calculateCircleMetrics(radius); -+function displayCircleMetrics(radius) { -+ const { area, circumference } = calculateCircleMetrics(radius); - console.log(`Area: ${area}`); -+ console.log(`Circumference: ${circumference}`); - } - --displayCircleMetrics(5); -+try { -+ displayCircleMetrics(5); -+} catch (error) { -+ console.error("Error:", error.message); -+} -``` -```` - -Here’s how it will look when rendered with Diff2Html: - -```diff2html -diff --git a/utils/mathUtils.js b/utils/mathUtils.js -index 3b5f3d1..c7f9b2e 100644 ---- a/utils/mathUtils.js -+++ b/utils/mathUtils.js -@@ -1,8 +1,12 @@ --// Basic math utilities -+// Extended math utilities with additional functions - --export function calculateArea(radius) { -- const PI = 3.14159; -+export function calculateCircleMetrics(radius) { -+ const PI = Math.PI; - const area = PI * radius ** 2; -+ const circumference = 2 * PI * radius; -+ -+ if (!isValidRadius(radius)) throw new Error("Invalid radius"); -+ - return { area, circumference }; - } - --export function validateRadius(radius) { -+export function isValidRadius(radius) { - return typeof radius === 'number' && radius > 0; - } - -diff --git a/main.js b/main.js -index 5f6a9c3..b7d4e8f 100644 ---- a/main.js -+++ b/main.js -@@ -2,9 +2,12 @@ - import { calculateCircleMetrics } from './utils/mathUtils'; - --function displayCircleMetrics(radius) { -- const { area } = calculateCircleMetrics(radius); -+function displayCircleMetrics(radius) { -+ const { area, circumference } = calculateCircleMetrics(radius); - console.log(`Area: ${area}`); -+ console.log(`Circumference: ${circumference}`); - } - --displayCircleMetrics(5); -+try { -+ displayCircleMetrics(5); -+} catch (error) { -+ console.error("Error:", error.message); -+} -``` - ---- - -## Leaflet - -[Leaflet](https://leafletjs.com/) is created by Ukrainian software engineer [Volodymyr Agafonkin](https://agafonkin.com/), allowing interactive maps to be embedded in webpages. With support for [GeoJSON data](https://geojson.org/), Leaflet allows you to highlight specific regions, making it easy to visualize geographical information in detail. - -You can use the following code to load map information on [OpenStreetMap](https://www.openstreetmap.org/): - -````markdown -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "name": "Crimea", - "popupContent": "Occupied Crimea" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 33.9, - 45.3 - ], - [ - 36.5, - 45.3 - ], - [ - 36.5, - 44.4 - ], - [ - 33.9, - 44.4 - ], - [ - 33.9, - 45.3 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Donetsk", - "popupContent": "Occupied Donetsk" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.5, - 48.5 - ], - [ - 39.5, - 48.5 - ], - [ - 39.5, - 47.5 - ], - [ - 37.5, - 47.5 - ], - [ - 37.5, - 48.5 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Luhansk", - "popupContent": "Occupied Luhansk" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 38.5, - 49.5 - ], - [ - 40.5, - 49.5 - ], - [ - 40.5, - 48.5 - ], - [ - 38.5, - 48.5 - ], - [ - 38.5, - 49.5 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Kherson", - "popupContent": "Occupied Kherson" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 32.3, - 47.3 - ], - [ - 34.3, - 47.3 - ], - [ - 34.3, - 46.3 - ], - [ - 32.3, - 46.3 - ], - [ - 32.3, - 47.3 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Zaporizhzhia", - "popupContent": "Occupied Zaporizhzhia" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 34.3, - 48 - ], - [ - 36.3, - 48 - ], - [ - 36.3, - 47 - ], - [ - 34.3, - 47 - ], - [ - 34.3, - 48 - ] - ] - ] - } - } - ] -} -``` -```` - -The rendered map below highlights the regions of Ukraine that have been illegally occupied by Russia over the years, including Crimea and the four eastern regions: - -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "name": "Crimea", - "popupContent": "Occupied Crimea" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 33.9, - 45.3 - ], - [ - 36.5, - 45.3 - ], - [ - 36.5, - 44.4 - ], - [ - 33.9, - 44.4 - ], - [ - 33.9, - 45.3 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Donetsk", - "popupContent": "Occupied Donetsk" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 37.5, - 48.5 - ], - [ - 39.5, - 48.5 - ], - [ - 39.5, - 47.5 - ], - [ - 37.5, - 47.5 - ], - [ - 37.5, - 48.5 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Luhansk", - "popupContent": "Occupied Luhansk" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 38.5, - 49.5 - ], - [ - 40.5, - 49.5 - ], - [ - 40.5, - 48.5 - ], - [ - 38.5, - 48.5 - ], - [ - 38.5, - 49.5 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Kherson", - "popupContent": "Occupied Kherson" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 32.3, - 47.3 - ], - [ - 34.3, - 47.3 - ], - [ - 34.3, - 46.3 - ], - [ - 32.3, - 46.3 - ], - [ - 32.3, - 47.3 - ] - ] - ] - } - }, - { - "type": "Feature", - "properties": { - "name": "Zaporizhzhia", - "popupContent": "Occupied Zaporizhzhia" - }, - "geometry": { - "type": "Polygon", - "coordinates": [ - [ - [ - 34.3, - 48 - ], - [ - 36.3, - 48 - ], - [ - 36.3, - 47 - ], - [ - 34.3, - 47 - ], - [ - 34.3, - 48 - ] - ] - ] - } - } - ] -} -``` - ---- - -## Chartjs, Echarts and Vega-Lite - -[Chart.js](https://www.chartjs.org/) is a versatile JavaScript library for creating responsive and interactive charts. Supporting multiple chart types like bar, line, pie, and radar, it’s an ideal tool for visualizing data directly in webpages. - -Here’s an example of a JSON-style configuration that creates a bar chart in Chart.js: - -```` -```chartjs -{ - "type": "bar", - "data": { - "labels": ["2017", "2018", "2019", "2020", "2021"], - "datasets": [ - { - "label": "Population (millions)", - "data": [12, 15, 13, 14, 16], - "backgroundColor": "rgba(54, 162, 235, 0.6)", - "borderColor": "rgba(54, 162, 235, 1)", - "borderWidth": 1 - } - ] - }, - "options": { - "scales": { - "y": { - "beginAtZero": true - } - } - } -} -``` -```` - -The rendered bar chart illustrates population data from 2017 to 2021: - -```chartjs -{ - "type": "bar", - "data": { - "labels": ["2017", "2018", "2019", "2020", "2021"], - "datasets": [ - { - "label": "Population (millions)", - "data": [12, 15, 13, 14, 16], - "backgroundColor": "rgba(54, 162, 235, 0.6)", - "borderColor": "rgba(54, 162, 235, 1)", - "borderWidth": 1 - } - ] - }, - "options": { - "scales": { - "y": { - "beginAtZero": true - } - } - } -} -``` - ---- - -[ECharts](https://echarts.apache.org/) is a powerful visualization library from [Apache](https://www.apache.org/) that supports a wide range of interactive charts, including more advanced types such as scatter plots, heatmaps, and geographic maps. - -The following JSON configuration creates a visually enhanced line chart that displays monthly sales data for two products. - -```` -```echarts -{ - "title": { - "text": "Monthly Sales Comparison", - "left": "center" - }, - "tooltip": { - "trigger": "axis", - "backgroundColor": "rgba(50, 50, 50, 0.7)", - "borderColor": "#777", - "borderWidth": 1, - "textStyle": { - "color": "#fff" - } - }, - "legend": { - "data": ["Product A", "Product B"], - "top": "10%" - }, - "xAxis": { - "type": "category", - "data": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], - "axisLine": { - "lineStyle": { - "color": "#888" - } - } - }, - "yAxis": { - "type": "value", - "axisLine": { - "lineStyle": { - "color": "#888" - } - }, - "splitLine": { - "lineStyle": { - "type": "dashed" - } - } - }, - "series": [ - { - "name": "Product A", - "type": "line", - "smooth": true, - "data": [820, 932, 901, 934, 1290, 1330, 1320, 1400, 1450, 1500, 1600, 1650], - "itemStyle": { - "color": "#5470C6" - }, - "lineStyle": { - "width": 3 - }, - "areaStyle": { - "color": { - "type": "linear", - "x": 0, - "y": 0, - "x2": 0, - "y2": 1, - "colorStops": [ - { "offset": 0, "color": "rgba(84, 112, 198, 0.5)" }, - { "offset": 1, "color": "rgba(84, 112, 198, 0)" } - ] - } - }, - "emphasis": { - "focus": "series" - } - }, - { - "name": "Product B", - "type": "line", - "smooth": true, - "data": [620, 732, 701, 734, 1090, 1130, 1120, 1200, 1250, 1300, 1400, 1450], - "itemStyle": { - "color": "#91CC75" - }, - "lineStyle": { - "width": 3 - }, - "areaStyle": { - "color": { - "type": "linear", - "x": 0, - "y": 0, - "x2": 0, - "y2": 1, - "colorStops": [ - { "offset": 0, "color": "rgba(145, 204, 117, 0.5)" }, - { "offset": 1, "color": "rgba(145, 204, 117, 0)" } - ] - } - }, - "emphasis": { - "focus": "series" - } - } - ] -} -``` -```` - -The rendered output is shown below, and you can also interact with it using your mouse: - -```echarts -{ - "title": { - "text": "Monthly Sales Comparison", - "left": "center" - }, - "tooltip": { - "trigger": "axis", - "backgroundColor": "rgba(50, 50, 50, 0.7)", - "borderColor": "#777", - "borderWidth": 1, - "textStyle": { - "color": "#fff" - } - }, - "legend": { - "data": ["Product A", "Product B"], - "top": "10%" - }, - "xAxis": { - "type": "category", - "data": ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], - "axisLine": { - "lineStyle": { - "color": "#888" - } - } - }, - "yAxis": { - "type": "value", - "axisLine": { - "lineStyle": { - "color": "#888" - } - }, - "splitLine": { - "lineStyle": { - "type": "dashed" - } - } - }, - "series": [ - { - "name": "Product A", - "type": "line", - "smooth": true, - "data": [820, 932, 901, 934, 1290, 1330, 1320, 1400, 1450, 1500, 1600, 1650], - "itemStyle": { - "color": "#5470C6" - }, - "lineStyle": { - "width": 3 - }, - "areaStyle": { - "color": { - "type": "linear", - "x": 0, - "y": 0, - "x2": 0, - "y2": 1, - "colorStops": [ - { "offset": 0, "color": "rgba(84, 112, 198, 0.5)" }, - { "offset": 1, "color": "rgba(84, 112, 198, 0)" } - ] - } - }, - "emphasis": { - "focus": "series" - } - }, - { - "name": "Product B", - "type": "line", - "smooth": true, - "data": [620, 732, 701, 734, 1090, 1130, 1120, 1200, 1250, 1300, 1400, 1450], - "itemStyle": { - "color": "#91CC75" - }, - "lineStyle": { - "width": 3 - }, - "areaStyle": { - "color": { - "type": "linear", - "x": 0, - "y": 0, - "x2": 0, - "y2": 1, - "colorStops": [ - { "offset": 0, "color": "rgba(145, 204, 117, 0.5)" }, - { "offset": 1, "color": "rgba(145, 204, 117, 0)" } - ] - } - }, - "emphasis": { - "focus": "series" - } - } - ] -} -``` - ---- - -[Vega-Lite](https://vega.github.io/vega-lite/) is a declarative visualization grammar that allows users to create, share, and customize a wide range of interactive data visualizations. The following JSON configuration generates a straightforward bar chart: - -```` -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega/v5.json", - "width": 400, - "height": 200, - "padding": 5, - - "data": [ - { - "name": "table", - "values": [ - {"category": "A", "value": 28}, - {"category": "B", "value": 55}, - {"category": "C", "value": 43}, - {"category": "D", "value": 91}, - {"category": "E", "value": 81}, - {"category": "F", "value": 53}, - {"category": "G", "value": 19}, - {"category": "H", "value": 87} - ] - } - ], - - "scales": [ - { - "name": "xscale", - "type": "band", - "domain": {"data": "table", "field": "category"}, - "range": "width", - "padding": 0.1 - }, - { - "name": "yscale", - "type": "linear", - "domain": {"data": "table", "field": "value"}, - "nice": true, - "range": "height" - } - ], - - "axes": [ - {"orient": "bottom", "scale": "xscale"}, - {"orient": "left", "scale": "yscale"} - ], - - "marks": [ - { - "type": "rect", - "from": {"data": "table"}, - "encode": { - "enter": { - "x": {"scale": "xscale", "field": "category"}, - "width": {"scale": "xscale", "band": 0.8}, - "y": {"scale": "yscale", "field": "value"}, - "y2": {"scale": "yscale", "value": 0}, - "fill": {"value": "steelblue"} - }, - "update": { - "fillOpacity": {"value": 1} - }, - "hover": { - "fill": {"value": "orange"} - } - } - } - ] -} -``` -```` - -The rendered output shows a clean and simple bar chart with a hover effect: - -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega/v5.json", - "width": 400, - "height": 200, - "padding": 5, - - "data": [ - { - "name": "table", - "values": [ - {"category": "A", "value": 28}, - {"category": "B", "value": 55}, - {"category": "C", "value": 43}, - {"category": "D", "value": 91}, - {"category": "E", "value": 81}, - {"category": "F", "value": 53}, - {"category": "G", "value": 19}, - {"category": "H", "value": 87} - ] - } - ], - - "scales": [ - { - "name": "xscale", - "type": "band", - "domain": {"data": "table", "field": "category"}, - "range": "width", - "padding": 0.1 - }, - { - "name": "yscale", - "type": "linear", - "domain": {"data": "table", "field": "value"}, - "nice": true, - "range": "height" - } - ], - - "axes": [ - {"orient": "bottom", "scale": "xscale"}, - {"orient": "left", "scale": "yscale"} - ], - - "marks": [ - { - "type": "rect", - "from": {"data": "table"}, - "encode": { - "enter": { - "x": {"scale": "xscale", "field": "category"}, - "width": {"scale": "xscale", "band": 0.8}, - "y": {"scale": "yscale", "field": "value"}, - "y2": {"scale": "yscale", "value": 0}, - "fill": {"value": "steelblue"} - }, - "update": { - "fillOpacity": {"value": 1} - }, - "hover": { - "fill": {"value": "orange"} - } - } - } - ] -} -``` - ---- - -## TikZ - -[TikZ](https://tikz.net/) is a powerful LaTeX-based drawing tool powered by [TikZJax](https://tikzjax.com/). You can easily port TikZ drawings from papers, posters, and notes. For example, we can use the following code to illustrate Euler’s formula $ e^{i \theta} = \cos \theta + i \sin \theta $: - -```markdown - -``` - -The rendered output is shown below, displayed as a vector graphic: - - - ---- - -## Typograms - -[Typograms](https://google.github.io/typograms/) are a way of combining text and graphics to convey information in a clear and visually engaging manner. Typograms are particularly effective for illustrating simple diagrams, charts, and concept visuals where text and graphics are closely integrated. The following example demonstrates a simple Typogram: - -```` -```typograms - ___________________ - / /| - /__________________/ | - | | | - | Distill | | - | | | - | | / - |__________________|/ -``` -```` - -The rendered output is shown below: - -```typograms - ___________________ - / /| - /__________________/ | - | | | - | Distill | | - | | | - | | / - |__________________|/ -``` - ---- - -## Layouts - -The main text column is referred to as the body. -It is the assumed layout of any direct descendants of the `d-article` element. - -
-

.l-body

-
- -For images you want to display a little larger, try `.l-page`: - -
-

.l-page

-
- -All of these have an outset variant if you want to poke out from the body text a little bit. -For instance: - -
-

.l-body-outset

-
- -
-

.l-page-outset

-
- -Occasionally you’ll want to use the full browser width. -For this, use `.l-screen`. -You can also inset the element a little from the edge of the browser by using the inset variant. - -
-

.l-screen

-
-
-

.l-screen-inset

-
- -The final layout is for marginalia, asides, and footnotes. -It does not interrupt the normal flow of `.l-body` sized text except on mobile screen sizes. - -
-

.l-gutter

-
- ---- - -## Other Typography? - -Emphasis, aka italics, with _asterisks_ (`*asterisks*`) or _underscores_ (`_underscores_`). - -Strong emphasis, aka bold, with **asterisks** or **underscores**. - -Combined emphasis with **asterisks and _underscores_**. - -Strikethrough uses two tildes. ~~Scratch this.~~ - -1. First ordered list item -2. Another item - ⋅⋅\* Unordered sub-list. -3. Actual numbers don't matter, just that it's a number - ⋅⋅1. Ordered sub-list -4. And another item. - -⋅⋅⋅You can have properly indented paragraphs within list items. Notice the blank line above, and the leading spaces (at least one, but we'll use three here to also align the raw Markdown). - -⋅⋅⋅To have a line break without a paragraph, you will need to use two trailing spaces.⋅⋅ -⋅⋅⋅Note that this line is separate, but within the same paragraph.⋅⋅ -⋅⋅⋅(This is contrary to the typical GFM line break behaviour, where trailing spaces are not required.) - -- Unordered list can use asterisks - -* Or minuses - -- Or pluses - -[I'm an inline-style link](https://www.google.com) - -[I'm an inline-style link with title](https://www.google.com "Google's Homepage") - -[I'm a reference-style link][Arbitrary case-insensitive reference text] - -[You can use numbers for reference-style link definitions][1] - -Or leave it empty and use the [link text itself]. - -URLs and URLs in angle brackets will automatically get turned into links. -http://www.example.com or and sometimes -example.com (but not on Github, for example). - -Some text to show that the reference links can follow later. - -[arbitrary case-insensitive reference text]: https://www.mozilla.org -[1]: http://slashdot.org -[link text itself]: http://www.reddit.com - -Here's our logo (hover to see the title text): - -Inline-style: -![alt text](https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 1") - -Reference-style: -![alt text][logo] - -[logo]: https://github.com/adam-p/markdown-here/raw/master/src/common/images/icon48.png "Logo Title Text 2" - -Inline `code` has `back-ticks around` it. - -```javascript -var s = "JavaScript syntax highlighting"; -alert(s); -``` - -```python -s = "Python syntax highlighting" -print s -``` - -``` -No language indicated, so no syntax highlighting. -But let's throw in a tag. -``` - -Colons can be used to align columns. - -| Tables | Are | Cool | -| ------------- | :-----------: | ----: | -| col 3 is | right-aligned | $1600 | -| col 2 is | centered | $12 | -| zebra stripes | are neat | $1 | - -There must be at least 3 dashes separating each header cell. -The outer pipes (|) are optional, and you don't need to make the -raw Markdown line up prettily. You can also use inline Markdown. - -| Markdown | Less | Pretty | -| -------- | --------- | ---------- | -| _Still_ | `renders` | **nicely** | -| 1 | 2 | 3 | - -> Blockquotes are very handy in email to emulate reply text. -> This line is part of the same quote. - -Quote break. - -> This is a very long line that will still be quoted properly when it wraps. Oh boy let's keep writing to make sure this is long enough to actually wrap for everyone. Oh, you can _put_ **Markdown** into a blockquote. - -Here's a line for us to start with. - -This line is separated from the one above by two newlines, so it will be a _separate paragraph_. - -This line is also a separate paragraph, but... -This line is only separated by a single newline, so it's a separate line in the _same paragraph_. diff --git a/_posts/old/2020-09-28-twitter.md b/_posts/old/2020-09-28-twitter.md deleted file mode 100644 index e99c12d8..00000000 --- a/_posts/old/2020-09-28-twitter.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -layout: post -title: a post with twitter -date: 2020-09-28 11:12:00-0400 -description: an example of a blog post with twitter -tags: formatting -categories: sample-posts external-services ---- - -A sample blog page that demonstrates the inclusion of Tweets/Timelines/etc. - -# Tweet - -An example of displaying a tweet: -{% twitter https://twitter.com/rubygems/status/518821243320287232 %} - -# Timeline - -An example of pulling from a timeline: -{% twitter https://twitter.com/jekyllrb maxwidth=500 limit=3 %} - -# Additional Details - -For more details on using the plugin visit: [jekyll-twitter-plugin](https://github.com/rob-murray/jekyll-twitter-plugin) diff --git a/_posts/old/2021-07-04-diagrams.md b/_posts/old/2021-07-04-diagrams.md deleted file mode 100644 index c85baa22..00000000 --- a/_posts/old/2021-07-04-diagrams.md +++ /dev/null @@ -1,34 +0,0 @@ ---- -layout: post -title: a post with diagrams -date: 2021-07-04 17:39:00 -tags: formatting diagrams -description: an example of a blog post with diagrams -mermaid: - enabled: true - zoomable: true ---- - -This theme supports generating various diagrams from a text description using [mermaid](https://mermaid-js.github.io/mermaid/){:target="\_blank"}. Previously, this was done using the [jekyll-diagrams](https://github.com/zhustec/jekyll-diagrams){:target="\_blank"} plugin. For more information on this matter, see the [related issue](https://github.com/alshedivat/al-folio/issues/1609#issuecomment-1656995674). To disable the zooming feature, set `mermaid.zoomable` to `false` in this post frontmatter. - -## Mermaid - -The diagram below was generated by the following code: - -````markdown -```mermaid -sequenceDiagram - participant John - participant Alice - Alice->>John: Hello John, how are you? - John-->>Alice: Great! -``` -```` - -```mermaid -sequenceDiagram - participant John - participant Alice - Alice->>John: Hello John, how are you? - John-->>Alice: Great! -``` diff --git a/_posts/old/2022-02-01-redirect.md b/_posts/old/2022-02-01-redirect.md deleted file mode 100644 index 62be5f3c..00000000 --- a/_posts/old/2022-02-01-redirect.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -layout: post -title: a post with redirect -date: 2022-02-01 17:39:00 -description: you can also redirect to assets like pdf -redirect: /assets/pdf/example_pdf.pdf ---- - -Redirecting to another page. diff --git a/_posts/old/2022-12-10-giscus-comments.md b/_posts/old/2022-12-10-giscus-comments.md deleted file mode 100644 index 72e08474..00000000 --- a/_posts/old/2022-12-10-giscus-comments.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: post -title: a post with giscus comments -date: 2022-12-10 11:59:00-0400 -description: an example of a blog post with giscus comments -tags: comments -categories: sample-posts external-services -giscus_comments: true -related_posts: false ---- - -This post shows how to add GISCUS comments. diff --git a/_posts/old/2023-03-20-table-of-contents.md b/_posts/old/2023-03-20-table-of-contents.md deleted file mode 100644 index ec91cd33..00000000 --- a/_posts/old/2023-03-20-table-of-contents.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: post -title: a post with table of contents -date: 2023-03-20 11:59:00-0400 -description: an example of a blog post with table of contents -tags: formatting toc -categories: sample-posts -giscus_comments: true -related_posts: false -toc: - beginning: true ---- - -This post shows how to add a table of contents in the beginning of the post. - -## Adding a Table of Contents - -To add a table of contents to a post, simply add - -```yml -toc: - beginning: true -``` - -to the front matter of the post. The table of contents will be automatically generated from the headings in the post. - -### Example of Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -## Table of Contents Options - -If you want to learn more about how to customize the table of contents, you can check the [jekyll-toc](https://github.com/toshimaru/jekyll-toc) repository. - -### Example of Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. diff --git a/_posts/old/2023-03-21-tables.md b/_posts/old/2023-03-21-tables.md deleted file mode 100644 index ca954991..00000000 --- a/_posts/old/2023-03-21-tables.md +++ /dev/null @@ -1,120 +0,0 @@ ---- -layout: post -title: displaying beautiful tables with Bootstrap Tables -date: 2023-03-20 14:37:00-0400 -description: an example of how to use Bootstrap Tables -tags: formatting tables -categories: sample-posts -giscus_comments: true -related_posts: true -pretty_table: true ---- - -Using markdown to display tables is easy. - -## Simple Example - -First, add the following to the post's front matter - -```yml -pretty_table: true -``` - -Then, the following syntax - -```markdown -| Left aligned | Center aligned | Right aligned | -| :----------- | :------------: | ------------: | -| Left 1 | center 1 | right 1 | -| Left 2 | center 2 | right 2 | -| Left 3 | center 3 | right 3 | -``` - -will generate - -| Left aligned | Center aligned | Right aligned | -| :----------- | :------------: | ------------: | -| Left 1 | center 1 | right 1 | -| Left 2 | center 2 | right 2 | -| Left 3 | center 3 | right 3 | - -

- -## HTML Example - -It is also possible to use HTML to display tables. For example, the following HTML code will display a table with [Bootstrap Table](https://bootstrap-table.com/), loaded from a JSON file: - -{% raw %} - -```html - - - - - - - - -
IDItem NameItem Price
-``` - -{% endraw %} - - - - - - - - - -
IDItem NameItem Price
- -

- -## More Complex Example - -By using [Bootstrap Table](https://bootstrap-table.com/) it is possible to create pretty complex tables, with pagination, search, and more. For example, the following HTML code will display a table, loaded from a JSON file, with pagination, search, checkboxes, and header/content alignment. For more information, check the [documentation](https://examples.bootstrap-table.com/index.html). - -{% raw %} - -```html - - - - - - - - - -
IDItem NameItem Price
-``` - -{% endraw %} - - - - - - - - - - -
IDItem NameItem Price
diff --git a/_posts/old/2023-04-24-videos.md b/_posts/old/2023-04-24-videos.md deleted file mode 100644 index d408d6bb..00000000 --- a/_posts/old/2023-04-24-videos.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -layout: post -title: a post with videos -date: 2023-04-24 21:01:00 -description: this is what included videos could look like -tags: formatting videos -categories: sample-posts ---- - -This is an example post with videos. It supports local video files. - -
-
- {% include video.liquid path="assets/video/pexels-engin-akyurt-6069112-960x540-30fps.mp4" class="img-fluid rounded z-depth-1" controls=true autoplay=true %} -
-
- {% include video.liquid path="assets/video/pexels-engin-akyurt-6069112-960x540-30fps.mp4" class="img-fluid rounded z-depth-1" controls=true %} -
-
-
- A simple, elegant caption looks good between video rows, after each row, or doesn't have to be there at all. -
- -It does also support embedding videos from different sources. Here are some examples: - -
-
- {% include video.liquid path="https://www.youtube.com/embed/jNQXAC9IVRw" class="img-fluid rounded z-depth-1" %} -
-
- {% include video.liquid path="https://player.vimeo.com/video/524933864?h=1ac4fd9fb4&title=0&byline=0&portrait=0" class="img-fluid rounded z-depth-1" %} -
-
diff --git a/_posts/old/2023-04-25-audios.md b/_posts/old/2023-04-25-audios.md deleted file mode 100644 index 1f3691ca..00000000 --- a/_posts/old/2023-04-25-audios.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: post -title: a post with audios -date: 2023-04-25 10:25:00 -description: this is what included audios could look like -tags: formatting audios -categories: sample-posts ---- - -This is an example post with audios. It supports local audio files. - -
-
- {% include audio.liquid path="assets/audio/epicaly-short-113909.mp3" controls=true %} -
-
- {% include audio.liquid path="https://cdn.pixabay.com/download/audio/2022/06/25/audio_69a61cd6d6.mp3" controls=true %} -
-
-
- A simple, elegant caption looks good between video rows, after each row, or doesn't have to be there at all. -
diff --git a/_posts/old/2023-04-25-sidebar-table-of-contents.md b/_posts/old/2023-04-25-sidebar-table-of-contents.md deleted file mode 100644 index 2afb8fca..00000000 --- a/_posts/old/2023-04-25-sidebar-table-of-contents.md +++ /dev/null @@ -1,47 +0,0 @@ ---- -layout: post -title: a post with table of contents on a sidebar -date: 2023-04-25 10:14:00-0400 -description: an example of a blog post with table of contents on a sidebar -tags: formatting toc sidebar -categories: sample-posts -giscus_comments: true -related_posts: false -toc: - sidebar: left ---- - -This post shows how to add a table of contents as a sidebar. - -## Adding a Table of Contents - -To add a table of contents to a post as a sidebar, simply add - -```yml -toc: - sidebar: left -``` - -to the front matter of the post. The table of contents will be automatically generated from the headings in the post. If you wish to display the sidebar to the right, simply change `left` to `right`. - -### Example of Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 1 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -## Customizing Your Table of Contents - -{:data-toc-text="Customizing"} - -If you want to learn more about how to customize the table of contents of your sidebar, you can check the [bootstrap-toc](https://afeld.github.io/bootstrap-toc/) documentation. Notice that you can even customize the text of the heading that will be displayed on the sidebar. - -### Example of Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. - -### Example of another Sub-Heading 2 - -Jean shorts raw denim Vice normcore, art party High Life PBR skateboard stumptown vinyl kitsch. Four loko meh 8-bit, tousled banh mi tilde forage Schlitz dreamcatcher twee 3 wolf moon. Chambray asymmetrical paleo salvia, sartorial umami four loko master cleanse drinking vinegar brunch. Pinterest DIY authentic Schlitz, hoodie Intelligentsia butcher trust fund brunch shabby chic Kickstarter forage flexitarian. Direct trade cold-pressed meggings stumptown plaid, pop-up taxidermy. Hoodie XOXO fingerstache scenester Echo Park. Plaid ugh Wes Anderson, freegan pug selvage fanny pack leggings pickled food truck DIY irony Banksy. diff --git a/_posts/old/2023-05-12-custom-blockquotes.md b/_posts/old/2023-05-12-custom-blockquotes.md deleted file mode 100644 index 0e0f6705..00000000 --- a/_posts/old/2023-05-12-custom-blockquotes.md +++ /dev/null @@ -1,131 +0,0 @@ ---- -layout: post -title: a post with custom blockquotes -date: 2023-05-12 15:53:00-0400 -description: an example of a blog post with custom blockquotes -tags: formatting blockquotes -categories: sample-posts -giscus_comments: true -related_posts: true ---- - -This post shows how to add custom styles for blockquotes. Based on [jekyll-gitbook](https://github.com/sighingnow/jekyll-gitbook) implementation. - -We decided to support the same custom blockquotes as in [jekyll-gitbook](https://sighingnow.github.io/jekyll-gitbook/jekyll/2022-06-30-tips_warnings_dangers.html), which are also found in a lot of other sites' styles. The styles definitions can be found on the [\_base.scss](https://github.com/alshedivat/al-folio/blob/main/_sass/_base.scss) file, more specifically: - -```scss -/* Tips, warnings, and dangers */ -.post .post-content blockquote { - &.block-tip { - border-color: var(--global-tip-block); - background-color: var(--global-tip-block-bg); - - p { - color: var(--global-tip-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-tip-block-title); - } - } - - &.block-warning { - border-color: var(--global-warning-block); - background-color: var(--global-warning-block-bg); - - p { - color: var(--global-warning-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-warning-block-title); - } - } - - &.block-danger { - border-color: var(--global-danger-block); - background-color: var(--global-danger-block-bg); - - p { - color: var(--global-danger-block-text); - } - - h1, - h2, - h3, - h4, - h5, - h6 { - color: var(--global-danger-block-title); - } - } -} -``` - -A regular blockquote can be used as following: - -```markdown -> This is a regular blockquote -> and it can be used as usual -``` - -> This is a regular blockquote -> and it can be used as usual - -These custom styles can be used by adding the specific class to the blockquote, as follows: - - - -```markdown -> ##### TIP -> -> A tip can be used when you want to give advice -> related to a certain content. -{: .block-tip } -``` - -> ##### TIP -> -> A tip can be used when you want to give advice -> related to a certain content. -{: .block-tip } - -```markdown -> ##### WARNING -> -> This is a warning, and thus should -> be used when you want to warn the user -{: .block-warning } -``` - -> ##### WARNING -> -> This is a warning, and thus should -> be used when you want to warn the user -{: .block-warning } - -```markdown -> ##### DANGER -> -> This is a danger zone, and thus should -> be used carefully -{: .block-danger } -``` - -> ##### DANGER -> -> This is a danger zone, and thus should -> be used carefully -{: .block-danger } - - diff --git a/_posts/old/2023-07-04-jupyter-notebook.md b/_posts/old/2023-07-04-jupyter-notebook.md deleted file mode 100644 index 8c1a1fc8..00000000 --- a/_posts/old/2023-07-04-jupyter-notebook.md +++ /dev/null @@ -1,45 +0,0 @@ ---- -layout: post -title: a post with jupyter notebook -date: 2023-07-04 08:57:00-0400 -description: an example of a blog post with jupyter notebook -tags: formatting jupyter -categories: sample-posts -giscus_comments: true -related_posts: false ---- - -To include a jupyter notebook in a post, you can use the following code: - -{% raw %} - -```liquid -{::nomarkdown} -{% assign jupyter_path = 'assets/jupyter/blog.ipynb' | relative_url %} -{% capture notebook_exists %}{% file_exists assets/jupyter/blog.ipynb %}{% endcapture %} -{% if notebook_exists == 'true' %} - {% jupyter_notebook jupyter_path %} -{% else %} -

Sorry, the notebook you are looking for does not exist.

-{% endif %} -{:/nomarkdown} -``` - -{% endraw %} - -Let's break it down: this is possible thanks to [Jekyll Jupyter Notebook plugin](https://github.com/red-data-tools/jekyll-jupyter-notebook) that allows you to embed jupyter notebooks in your posts. It basically calls [`jupyter nbconvert --to html`](https://nbconvert.readthedocs.io/en/latest/usage.html#convert-html) to convert the notebook to an html page and then includes it in the post. Since [Kramdown](https://jekyllrb.com/docs/configuration/markdown/) is the default Markdown renderer for Jekyll, we need to surround the call to the plugin with the [::nomarkdown](https://kramdown.gettalong.org/syntax.html#extensions) tag so that it stops processing this part with Kramdown and outputs the content as-is. - -The plugin takes as input the path to the notebook, but it assumes the file exists. If you want to check if the file exists before calling the plugin, you can use the `file_exists` filter. This avoids getting a 404 error from the plugin and ending up displaying the main page inside of it instead. If the file does not exist, you can output a message to the user. The code displayed above outputs the following: - -{::nomarkdown} -{% assign jupyter_path = "assets/jupyter/blog.ipynb" | relative_url %} -{% capture notebook_exists %}{% file_exists assets/jupyter/blog.ipynb %}{% endcapture %} -{% if notebook_exists == "true" %} -{% jupyter_notebook jupyter_path %} -{% else %} - -

Sorry, the notebook you are looking for does not exist.

-{% endif %} -{:/nomarkdown} - -Note that the jupyter notebook supports both light and dark themes. diff --git a/_posts/old/2023-07-12-post-bibliography.md b/_posts/old/2023-07-12-post-bibliography.md deleted file mode 100644 index 168356c8..00000000 --- a/_posts/old/2023-07-12-post-bibliography.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -layout: post -title: a post with bibliography -date: 2023-07-12 09:56:00-0400 -description: an example of a blog post with bibliography -tags: formatting bib -categories: sample-posts -giscus_comments: true -related_posts: false -related_publications: true ---- - -This post shows how to add bibliography to simple blog posts. We support every citation style that [jekyll-scholar](https://github.com/inukshuk/jekyll-scholar) does. That means simple citation like {% cite einstein1950meaning %}, multiple citations like {% cite einstein1950meaning einstein1905movement %}, long references like {% reference einstein1905movement %} or also quotes: - -{% quote einstein1905electrodynamics %} -Lorem ipsum dolor sit amet, consectetur adipisicing elit, -sed do eiusmod tempor. - -Lorem ipsum dolor sit amet, consectetur adipisicing. -{% endquote %} - -If you would like something more academic, check the [distill style post]({% post_url 2018-12-22-distill %}). diff --git a/_posts/old/2023-12-12-tikzjax.md b/_posts/old/2023-12-12-tikzjax.md deleted file mode 100644 index a0df3313..00000000 --- a/_posts/old/2023-12-12-tikzjax.md +++ /dev/null @@ -1,19 +0,0 @@ ---- -layout: post -title: a post with TikZJax -date: 2023-12-12 22:25:00 -description: this is what included TikZ code could look like -tags: formatting diagrams -categories: sample-posts -tikzjax: true ---- - -This is an example post with TikZ code. TikZJax converts script tags (containing TikZ code) into SVGs. - - diff --git a/_posts/old/2024-01-26-chartjs.md b/_posts/old/2024-01-26-chartjs.md deleted file mode 100644 index 210557d6..00000000 --- a/_posts/old/2024-01-26-chartjs.md +++ /dev/null @@ -1,188 +0,0 @@ ---- -layout: post -title: a post with chart.js -date: 2024-01-26 01:04:00 -description: this is what included chart.js code could look like -tags: formatting charts -categories: sample-posts -chart: - chartjs: true ---- - -This is an example post with some [chart.js](https://www.chartjs.org/) code. - -````markdown -```chartjs -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` -```` - -This is how it looks like: - -```chartjs -{ - "type": "line", - "data": { - "labels": [ - "January", - "February", - "March", - "April", - "May", - "June", - "July" - ], - "datasets": [ - { - "label": "# of bugs", - "fill": false, - "lineTension": 0.1, - "backgroundColor": "rgba(75,192,192,0.4)", - "borderColor": "rgba(75,192,192,1)", - "borderCapStyle": "butt", - "borderDash": [], - "borderDashOffset": 0, - "borderJoinStyle": "miter", - "pointBorderColor": "rgba(75,192,192,1)", - "pointBackgroundColor": "#fff", - "pointBorderWidth": 1, - "pointHoverRadius": 5, - "pointHoverBackgroundColor": "rgba(75,192,192,1)", - "pointHoverBorderColor": "rgba(220,220,220,1)", - "pointHoverBorderWidth": 2, - "pointRadius": 1, - "pointHitRadius": 10, - "data": [ - 65, - 59, - 80, - 81, - 56, - 55, - 40 - ], - "spanGaps": false - } - ] - }, - "options": {} -} -``` - -Also another example chart. - -````markdown -```chartjs -{ - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` -```` - -Which generates: - -```chartjs -{ - "type": "doughnut", - "data": { - "labels": [ - "Red", - "Blue", - "Yellow" - ], - "datasets": [ - { - "data": [ - 300, - 50, - 100 - ], - "backgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ], - "hoverBackgroundColor": [ - "#FF6384", - "#36A2EB", - "#FFCE56" - ] - } - ] - }, - "options": {} -} -``` diff --git a/_posts/old/2024-01-26-echarts.md b/_posts/old/2024-01-26-echarts.md deleted file mode 100644 index b496288d..00000000 --- a/_posts/old/2024-01-26-echarts.md +++ /dev/null @@ -1,68 +0,0 @@ ---- -layout: post -title: a post with echarts -date: 2024-01-26 16:03:00 -description: this is what included echarts code could look like -tags: formatting charts -categories: sample-posts -chart: - echarts: true ---- - -This is an example post with some [echarts](https://echarts.apache.org/) code. - -````markdown -```echarts -{ - "title": { - "text": "ECharts Getting Started Example" - }, - "responsive": true, - "tooltip": {}, - "legend": { - "top": "30px", - "data": ["sales"] - }, - "xAxis": { - "data": ["Shirts", "Cardigans", "Chiffons", "Pants", "Heels", "Socks"] - }, - "yAxis": {}, - "series": [ - { - "name": "sales", - "type": "bar", - "data": [5, 20, 36, 10, 10, 20] - } - ] -} -``` -```` - -Which generates: - -```echarts -{ - "title": { - "text": "ECharts Getting Started Example" - }, - "responsive": true, - "tooltip": {}, - "legend": { - "top": "30px", - "data": ["sales"] - }, - "xAxis": { - "data": ["Shirts", "Cardigans", "Chiffons", "Pants", "Heels", "Socks"] - }, - "yAxis": {}, - "series": [ - { - "name": "sales", - "type": "bar", - "data": [5, 20, 36, 10, 10, 20] - } - ] -} -``` - -Note that this library offer support for both light and dark themes. You can switch between them using the theme switcher in the top right corner of the page. diff --git a/_posts/old/2024-01-26-geojson-map.md b/_posts/old/2024-01-26-geojson-map.md deleted file mode 100644 index 6909aee6..00000000 --- a/_posts/old/2024-01-26-geojson-map.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -layout: post -title: a post with geojson -date: 2024-01-26 17:57:00 -description: this is what included geojson code could look like -tags: formatting charts maps -categories: sample-posts -map: true ---- - -This is an example post with some [geojson](https://geojson.org/) code. The support is provided thanks to [Leaflet](https://leafletjs.com/). To create your own visualization, go to [geojson.io](https://geojson.io/). - -````markdown -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "coordinates": [ - [ - [ - -60.11363029935569, - -2.904625022183211 - ], - [ - -60.11363029935569, - -3.162613728707967 - ], - [ - -59.820894493858034, - -3.162613728707967 - ], - [ - -59.820894493858034, - -2.904625022183211 - ], - [ - -60.11363029935569, - -2.904625022183211 - ] - ] - ], - "type": "Polygon" - } - } - ] -} -``` -```` - -Which generates: - -```geojson -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": {}, - "geometry": { - "coordinates": [ - [ - [ - -60.11363029935569, - -2.904625022183211 - ], - [ - -60.11363029935569, - -3.162613728707967 - ], - [ - -59.820894493858034, - -3.162613728707967 - ], - [ - -59.820894493858034, - -2.904625022183211 - ], - [ - -60.11363029935569, - -2.904625022183211 - ] - ] - ], - "type": "Polygon" - } - } - ] -} -``` diff --git a/_posts/old/2024-01-27-advanced-images.md b/_posts/old/2024-01-27-advanced-images.md deleted file mode 100644 index 3baa160b..00000000 --- a/_posts/old/2024-01-27-advanced-images.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -layout: post -title: a post with advanced image components -date: 2024-01-27 11:46:00 -description: this is what advanced image components could look like -tags: formatting images -categories: sample-posts -thumbnail: assets/img/9.jpg -images: - compare: true - slider: true ---- - -This is an example post with advanced image components. - -## Image Slider - -This is a simple image slider. It uses the [Swiper](https://swiperjs.com/) library. Check the [examples page](https://swiperjs.com/demos) for more information of what you can achieve with it. - - - {% include figure.liquid loading="eager" path="assets/img/9.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/7.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/8.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/10.jpg" class="img-fluid rounded z-depth-1" %} - {% include figure.liquid loading="eager" path="assets/img/12.jpg" class="img-fluid rounded z-depth-1" %} - - -## Image Comparison Slider - -This is a simple image comparison slider. It uses the [img-comparison-slider](https://img-comparison-slider.sneas.io/) library. Check the [examples page](https://img-comparison-slider.sneas.io/examples.html) for more information of what you can achieve with it. - - - {% include figure.liquid path="assets/img/prof_pic.jpg" class="img-fluid rounded z-depth-1" slot="first" %} - {% include figure.liquid path="assets/img/prof_pic_color.png" class="img-fluid rounded z-depth-1" slot="second" %} - diff --git a/_posts/old/2024-01-27-code-diff.md b/_posts/old/2024-01-27-code-diff.md deleted file mode 100644 index 6ec06d5b..00000000 --- a/_posts/old/2024-01-27-code-diff.md +++ /dev/null @@ -1,473 +0,0 @@ ---- -layout: post -title: a post with code diff -date: 2024-01-27 19:22:00 -description: this is how you can display code diffs -tags: formatting code -categories: sample-posts -code_diff: true ---- - -You can display diff code by using the regular markdown syntax: - -````markdown -```diff -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` -```` - -Which generates: - -```diff -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` - -But this is difficult to read, specially if you have a large diff. You can use [diff2html](https://diff2html.xyz/) to display a more readable version of the diff. For this, just use `diff2html` instead of `diff` for the code block language: - -````markdown -```diff2html -diff --git a/sample.js b/sample.js -index 0000001..0ddf2ba ---- a/sample.js -+++ b/sample.js -@@ -1 +1 @@ --console.log("Hello World!") -+console.log("Hello from Diff2Html!") -``` -```` - -If we use a longer example, for example [this commit from diff2html](https://github.com/rtfpessoa/diff2html/commit/c2c253d3e3f8b8b267f551e659f72b44ca2ac927), it will generate the following output: - -```diff2html -From 2aaae31cc2a37bfff83430c2c914b140bee59b6a Mon Sep 17 00:00:00 2001 -From: Rodrigo Fernandes -Date: Sun, 9 Oct 2016 16:41:54 +0100 -Subject: [PATCH 1/2] Initial template override support - ---- - scripts/hulk.js | 4 ++-- - src/diff2html.js | 3 +-- - src/file-list-printer.js | 11 ++++++++--- - src/hoganjs-utils.js | 29 +++++++++++++++++------------ - src/html-printer.js | 6 ++++++ - src/line-by-line-printer.js | 6 +++++- - src/side-by-side-printer.js | 6 +++++- - test/file-list-printer-tests.js | 2 +- - test/hogan-cache-tests.js | 18 +++++++++++++++--- - test/line-by-line-tests.js | 3 +-- - test/side-by-side-printer-tests.js | 3 +-- - 11 files changed, 62 insertions(+), 29 deletions(-) - -diff --git a/scripts/hulk.js b/scripts/hulk.js -index 5a793c18..a4b1a4d5 100755 ---- a/scripts/hulk.js -+++ b/scripts/hulk.js -@@ -173,11 +173,11 @@ function namespace(name) { - // write a template foreach file that matches template extension - templates = extractFiles(options.argv.remain) - .map(function(file) { -- var openedFile = fs.readFileSync(file, 'utf-8'); -+ var openedFile = fs.readFileSync(file, 'utf-8').trim(); - var name; - if (!openedFile) return; - name = namespace(path.basename(file).replace(/\..*$/, '')); -- openedFile = removeByteOrderMark(openedFile.trim()); -+ openedFile = removeByteOrderMark(openedFile); - openedFile = wrap(file, name, openedFile); - if (!options.outputdir) return openedFile; - fs.writeFileSync(path.join(options.outputdir, name + '.js') -diff --git a/src/diff2html.js b/src/diff2html.js -index 21b0119e..64e138f5 100644 ---- a/src/diff2html.js -+++ b/src/diff2html.js -@@ -7,7 +7,6 @@ - - (function() { - var diffParser = require('./diff-parser.js').DiffParser; -- var fileLister = require('./file-list-printer.js').FileListPrinter; - var htmlPrinter = require('./html-printer.js').HtmlPrinter; - - function Diff2Html() { -@@ -43,7 +42,7 @@ - - var fileList = ''; - if (configOrEmpty.showFiles === true) { -- fileList = fileLister.generateFileList(diffJson, configOrEmpty); -+ fileList = htmlPrinter.generateFileListSummary(diffJson, configOrEmpty); - } - - var diffOutput = ''; -diff --git a/src/file-list-printer.js b/src/file-list-printer.js -index e408d9b2..1e0a2c61 100644 ---- a/src/file-list-printer.js -+++ b/src/file-list-printer.js -@@ -8,11 +8,16 @@ - (function() { - var printerUtils = require('./printer-utils.js').PrinterUtils; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var baseTemplatesPath = 'file-summary'; - var iconsBaseTemplatesPath = 'icon'; - -- function FileListPrinter() { -+ function FileListPrinter(config) { -+ this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - FileListPrinter.prototype.generateFileList = function(diffFiles) { -@@ -38,5 +43,5 @@ - }); - }; - -- module.exports.FileListPrinter = new FileListPrinter(); -+ module.exports.FileListPrinter = FileListPrinter; - })(); -diff --git a/src/hoganjs-utils.js b/src/hoganjs-utils.js -index 9949e5fa..0dda08d7 100644 ---- a/src/hoganjs-utils.js -+++ b/src/hoganjs-utils.js -@@ -8,18 +8,19 @@ - (function() { - var fs = require('fs'); - var path = require('path'); -- - var hogan = require('hogan.js'); - - var hoganTemplates = require('./templates/diff2html-templates.js'); - -- var templatesPath = path.resolve(__dirname, 'templates'); -+ var extraTemplates; - -- function HoganJsUtils() { -+ function HoganJsUtils(configuration) { -+ this.config = configuration || {}; -+ extraTemplates = this.config.templates || {}; - } - -- HoganJsUtils.prototype.render = function(namespace, view, params, configuration) { -- var template = this.template(namespace, view, configuration); -+ HoganJsUtils.prototype.render = function(namespace, view, params) { -+ var template = this.template(namespace, view); - if (template) { - return template.render(params); - } -@@ -27,17 +28,16 @@ - return null; - }; - -- HoganJsUtils.prototype.template = function(namespace, view, configuration) { -- var config = configuration || {}; -+ HoganJsUtils.prototype.template = function(namespace, view) { - var templateKey = this._templateKey(namespace, view); - -- return this._getTemplate(templateKey, config); -+ return this._getTemplate(templateKey); - }; - -- HoganJsUtils.prototype._getTemplate = function(templateKey, config) { -+ HoganJsUtils.prototype._getTemplate = function(templateKey) { - var template; - -- if (!config.noCache) { -+ if (!this.config.noCache) { - template = this._readFromCache(templateKey); - } - -@@ -53,6 +53,7 @@ - - try { - if (fs.readFileSync) { -+ var templatesPath = path.resolve(__dirname, 'templates'); - var templatePath = path.join(templatesPath, templateKey); - var templateContent = fs.readFileSync(templatePath + '.mustache', 'utf8'); - template = hogan.compile(templateContent); -@@ -66,12 +67,16 @@ - }; - - HoganJsUtils.prototype._readFromCache = function(templateKey) { -- return hoganTemplates[templateKey]; -+ return extraTemplates[templateKey] || hoganTemplates[templateKey]; - }; - - HoganJsUtils.prototype._templateKey = function(namespace, view) { - return namespace + '-' + view; - }; - -- module.exports.HoganJsUtils = new HoganJsUtils(); -+ HoganJsUtils.prototype.compile = function(templateStr) { -+ return hogan.compile(templateStr); -+ }; -+ -+ module.exports.HoganJsUtils = HoganJsUtils; - })(); -diff --git a/src/html-printer.js b/src/html-printer.js -index 585d5b66..13f83047 100644 ---- a/src/html-printer.js -+++ b/src/html-printer.js -@@ -8,6 +8,7 @@ - (function() { - var LineByLinePrinter = require('./line-by-line-printer.js').LineByLinePrinter; - var SideBySidePrinter = require('./side-by-side-printer.js').SideBySidePrinter; -+ var FileListPrinter = require('./file-list-printer.js').FileListPrinter; - - function HtmlPrinter() { - } -@@ -22,5 +23,10 @@ - return sideBySidePrinter.generateSideBySideJsonHtml(diffFiles); - }; - -+ HtmlPrinter.prototype.generateFileListSummary = function(diffJson, config) { -+ var fileListPrinter = new FileListPrinter(config); -+ return fileListPrinter.generateFileList(diffJson); -+ }; -+ - module.exports.HtmlPrinter = new HtmlPrinter(); - })(); -diff --git a/src/line-by-line-printer.js b/src/line-by-line-printer.js -index b07eb53c..d230bedd 100644 ---- a/src/line-by-line-printer.js -+++ b/src/line-by-line-printer.js -@@ -11,7 +11,8 @@ - var utils = require('./utils.js').Utils; - var Rematch = require('./rematch.js').Rematch; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var genericTemplatesPath = 'generic'; - var baseTemplatesPath = 'line-by-line'; - var iconsBaseTemplatesPath = 'icon'; -@@ -19,6 +20,9 @@ - - function LineByLinePrinter(config) { - this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - LineByLinePrinter.prototype.makeFileDiffHtml = function(file, diffs) { -diff --git a/src/side-by-side-printer.js b/src/side-by-side-printer.js -index bbf1dc8d..5e3033b3 100644 ---- a/src/side-by-side-printer.js -+++ b/src/side-by-side-printer.js -@@ -11,7 +11,8 @@ - var utils = require('./utils.js').Utils; - var Rematch = require('./rematch.js').Rematch; - -- var hoganUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ var hoganUtils; -+ - var genericTemplatesPath = 'generic'; - var baseTemplatesPath = 'side-by-side'; - var iconsBaseTemplatesPath = 'icon'; -@@ -26,6 +27,9 @@ - - function SideBySidePrinter(config) { - this.config = config; -+ -+ var HoganJsUtils = require('./hoganjs-utils.js').HoganJsUtils; -+ hoganUtils = new HoganJsUtils(config); - } - - SideBySidePrinter.prototype.makeDiffHtml = function(file, diffs) { -diff --git a/test/file-list-printer-tests.js b/test/file-list-printer-tests.js -index a502a46f..60ea3208 100644 ---- a/test/file-list-printer-tests.js -+++ b/test/file-list-printer-tests.js -@@ -1,6 +1,6 @@ - var assert = require('assert'); - --var fileListPrinter = require('../src/file-list-printer.js').FileListPrinter; -+var fileListPrinter = new (require('../src/file-list-printer.js').FileListPrinter)(); - - describe('FileListPrinter', function() { - describe('generateFileList', function() { -diff --git a/test/hogan-cache-tests.js b/test/hogan-cache-tests.js -index 190bf6f8..3bb754ac 100644 ---- a/test/hogan-cache-tests.js -+++ b/test/hogan-cache-tests.js -@@ -1,6 +1,6 @@ - var assert = require('assert'); - --var HoganJsUtils = require('../src/hoganjs-utils.js').HoganJsUtils; -+var HoganJsUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(); - var diffParser = require('../src/diff-parser.js').DiffParser; - - describe('HoganJsUtils', function() { -@@ -21,16 +21,28 @@ describe('HoganJsUtils', function() { - }); - assert.equal(emptyDiffHtml, result); - }); -+ - it('should render view without cache', function() { - var result = HoganJsUtils.render('generic', 'empty-diff', { - contentClass: 'd2h-code-line', - diffParser: diffParser - }, {noCache: true}); -- assert.equal(emptyDiffHtml + '\n', result); -+ assert.equal(emptyDiffHtml, result); - }); -+ - it('should return null if template is missing', function() { -- var result = HoganJsUtils.render('generic', 'missing-template', {}, {noCache: true}); -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)({noCache: true}); -+ var result = hoganUtils.render('generic', 'missing-template', {}); - assert.equal(null, result); - }); -+ -+ it('should allow templates to be overridden', function() { -+ var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); -+ -+ var config = {templates: {'generic-empty-diff': emptyDiffTemplate}}; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); - }); - }); -diff --git a/test/line-by-line-tests.js b/test/line-by-line-tests.js -index 1cd92073..8869b3df 100644 ---- a/test/line-by-line-tests.js -+++ b/test/line-by-line-tests.js -@@ -14,7 +14,7 @@ describe('LineByLinePrinter', function() { - ' File without changes\n' + - ' \n' + - ' \n' + -- '\n'; -+ ''; - - assert.equal(expected, fileHtml); - }); -@@ -422,7 +422,6 @@ describe('LineByLinePrinter', function() { - ' \n' + - ' \n' + - '\n' + -- '\n' + - ' \n' + - ' \n' + - ' \n' + -diff --git a/test/side-by-side-printer-tests.js b/test/side-by-side-printer-tests.js -index 76625f8e..771daaa5 100644 ---- a/test/side-by-side-printer-tests.js -+++ b/test/side-by-side-printer-tests.js -@@ -14,7 +14,7 @@ describe('SideBySidePrinter', function() { - ' File without changes\n' + - ' \n' + - ' \n' + -- '\n'; -+ ''; - - assert.equal(expectedRight, fileHtml.right); - assert.equal(expectedLeft, fileHtml.left); -@@ -324,7 +324,6 @@ describe('SideBySidePrinter', function() { - ' \n' + - ' \n' + - '\n' + -- '\n' + - ' \n' + - ' \n' + - ' \n' + - -From f3cadb96677d0eb82fc2752dc3ffbf35ca9b5bdb Mon Sep 17 00:00:00 2001 -From: Rodrigo Fernandes -Date: Sat, 15 Oct 2016 13:21:22 +0100 -Subject: [PATCH 2/2] Allow uncompiled templates - ---- - README.md | 3 +++ - src/hoganjs-utils.js | 7 +++++++ - test/hogan-cache-tests.js | 24 +++++++++++++++++++++++- - 3 files changed, 33 insertions(+), 1 deletion(-) - -diff --git a/README.md b/README.md -index 132c8a28..46909f25 100644 ---- a/README.md -+++ b/README.md -@@ -98,6 +98,9 @@ The HTML output accepts a Javascript object with configuration. Possible options - - `synchronisedScroll`: scroll both panes in side-by-side mode: `true` or `false`, default is `false` - - `matchWordsThreshold`: similarity threshold for word matching, default is 0.25 - - `matchingMaxComparisons`: perform at most this much comparisons for line matching a block of changes, default is `2500` -+ - `templates`: object with previously compiled templates to replace parts of the html -+ - `rawTemplates`: object with raw not compiled templates to replace parts of the html -+ > For more information regarding the possible templates look into [src/templates](https://github.com/rtfpessoa/diff2html/tree/master/src/templates) - - ## Diff2HtmlUI Helper - -diff --git a/src/hoganjs-utils.js b/src/hoganjs-utils.js -index 0dda08d7..b2e9c275 100644 ---- a/src/hoganjs-utils.js -+++ b/src/hoganjs-utils.js -@@ -17,6 +17,13 @@ - function HoganJsUtils(configuration) { - this.config = configuration || {}; - extraTemplates = this.config.templates || {}; -+ -+ var rawTemplates = this.config.rawTemplates || {}; -+ for (var templateName in rawTemplates) { -+ if (rawTemplates.hasOwnProperty(templateName)) { -+ if (!extraTemplates[templateName]) extraTemplates[templateName] = this.compile(rawTemplates[templateName]); -+ } -+ } - } - - HoganJsUtils.prototype.render = function(namespace, view, params) { -diff --git a/test/hogan-cache-tests.js b/test/hogan-cache-tests.js -index 3bb754ac..a34839c0 100644 ---- a/test/hogan-cache-tests.js -+++ b/test/hogan-cache-tests.js -@@ -36,7 +36,7 @@ describe('HoganJsUtils', function() { - assert.equal(null, result); - }); - -- it('should allow templates to be overridden', function() { -+ it('should allow templates to be overridden with compiled templates', function() { - var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); - - var config = {templates: {'generic-empty-diff': emptyDiffTemplate}}; -@@ -44,5 +44,27 @@ describe('HoganJsUtils', function() { - var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); - assert.equal('

Rodrigo Fernandes

', result); - }); -+ -+ it('should allow templates to be overridden with uncompiled templates', function() { -+ var emptyDiffTemplate = '

{{myName}}

'; -+ -+ var config = {rawTemplates: {'generic-empty-diff': emptyDiffTemplate}}; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); -+ -+ it('should allow templates to be overridden giving priority to compiled templates', function() { -+ var emptyDiffTemplate = HoganJsUtils.compile('

{{myName}}

'); -+ var emptyDiffTemplateUncompiled = '

Not used!

'; -+ -+ var config = { -+ templates: {'generic-empty-diff': emptyDiffTemplate}, -+ rawTemplates: {'generic-empty-diff': emptyDiffTemplateUncompiled} -+ }; -+ var hoganUtils = new (require('../src/hoganjs-utils.js').HoganJsUtils)(config); -+ var result = hoganUtils.render('generic', 'empty-diff', {myName: 'Rodrigo Fernandes'}); -+ assert.equal('

Rodrigo Fernandes

', result); -+ }); - }); - }); -``` diff --git a/_posts/old/2024-01-27-vega-lite.md b/_posts/old/2024-01-27-vega-lite.md deleted file mode 100644 index 099eb88f..00000000 --- a/_posts/old/2024-01-27-vega-lite.md +++ /dev/null @@ -1,105 +0,0 @@ ---- -layout: post -title: a post with vega lite -date: 2024-01-27 00:20:00 -last_updated: 2024-04-14 04:30:00 -description: this is what included vega lite code could look like -tags: formatting charts -categories: sample-posts -chart: - vega_lite: true ---- - -This is an example post with some [vega lite](https://vega.github.io/vega-lite/) code. - -````markdown -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega-lite/v5.json", - "description": "A dot plot showing each movie in the database, and the difference from the average movie rating. The display is sorted by year to visualize everything in sequential order. The graph is for all Movies before 2019.", - "data": { - "url": "https://raw.githubusercontent.com/vega/vega/main/docs/data/movies.json" - }, - "transform": [ - {"filter": "datum['IMDB Rating'] != null"}, - {"filter": {"timeUnit": "year", "field": "Release Date", "range": [null, 2019]}}, - { - "joinaggregate": [{ - "op": "mean", - "field": "IMDB Rating", - "as": "AverageRating" - }] - }, - { - "calculate": "datum['IMDB Rating'] - datum.AverageRating", - "as": "RatingDelta" - } - ], - "mark": "point", - "encoding": { - "x": { - "field": "Release Date", - "type": "temporal" - }, - "y": { - "field": "RatingDelta", - "type": "quantitative", - "title": "Rating Delta" - }, - "color": { - "field": "RatingDelta", - "type": "quantitative", - "scale": {"domainMid": 0}, - "title": "Rating Delta" - } - } -} -``` -```` - -Which generates: - -```vega_lite -{ - "$schema": "https://vega.github.io/schema/vega-lite/v5.json", - "description": "A dot plot showing each movie in the database, and the difference from the average movie rating. The display is sorted by year to visualize everything in sequential order. The graph is for all Movies before 2019.", - "data": { - "url": "https://raw.githubusercontent.com/vega/vega/main/docs/data/movies.json" - }, - "transform": [ - {"filter": "datum['IMDB Rating'] != null"}, - {"filter": {"timeUnit": "year", "field": "Release Date", "range": [null, 2019]}}, - { - "joinaggregate": [{ - "op": "mean", - "field": "IMDB Rating", - "as": "AverageRating" - }] - }, - { - "calculate": "datum['IMDB Rating'] - datum.AverageRating", - "as": "RatingDelta" - } - ], - "mark": "point", - "encoding": { - "x": { - "field": "Release Date", - "type": "temporal" - }, - "y": { - "field": "RatingDelta", - "type": "quantitative", - "title": "Rating Delta" - }, - "color": { - "field": "RatingDelta", - "type": "quantitative", - "scale": {"domainMid": 0}, - "title": "Rating Delta" - } - } -} -``` - -This plot supports both light and dark themes. diff --git a/_posts/old/2024-04-15-pseudocode.md b/_posts/old/2024-04-15-pseudocode.md deleted file mode 100644 index d7ff18b8..00000000 --- a/_posts/old/2024-04-15-pseudocode.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -layout: post -title: a post with pseudo code -date: 2024-04-15 00:01:00 -description: this is what included pseudo code could look like -tags: formatting code -categories: sample-posts -pseudocode: true ---- - -This is an example post with some pseudo code rendered by [pseudocode](https://github.com/SaswatPadhi/pseudocode.js). The example presented here is the same as the one in the [pseudocode.js](https://saswat.padhi.me/pseudocode.js/) documentation, with only one simple but important change: everytime you would use `$`, you should use `$$` instead. Also, note that the `pseudocode` key in the front matter is set to `true` to enable the rendering of pseudo code. As an example, using this code: - -````markdown -```pseudocode -% This quicksort algorithm is extracted from Chapter 7, Introduction to Algorithms (3rd edition) -\begin{algorithm} -\caption{Quicksort} -\begin{algorithmic} -\PROCEDURE{Quicksort}{$$A, p, r$$} - \IF{$$p < r$$} - \STATE $$q = $$ \CALL{Partition}{$$A, p, r$$} - \STATE \CALL{Quicksort}{$$A, p, q - 1$$} - \STATE \CALL{Quicksort}{$$A, q + 1, r$$} - \ENDIF -\ENDPROCEDURE -\PROCEDURE{Partition}{$$A, p, r$$} - \STATE $$x = A[r]$$ - \STATE $$i = p - 1$$ - \FOR{$$j = p$$ \TO $$r - 1$$} - \IF{$$A[j] < x$$} - \STATE $$i = i + 1$$ - \STATE exchange - $$A[i]$$ with $$A[j]$$ - \ENDIF - \STATE exchange $$A[i]$$ with $$A[r]$$ - \ENDFOR -\ENDPROCEDURE -\end{algorithmic} -\end{algorithm} -``` -```` - -Generates: - -```pseudocode -% This quicksort algorithm is extracted from Chapter 7, Introduction to Algorithms (3rd edition) -\begin{algorithm} -\caption{Quicksort} -\begin{algorithmic} -\PROCEDURE{Quicksort}{$$A, p, r$$} - \IF{$$p < r$$} - \STATE $$q = $$ \CALL{Partition}{$$A, p, r$$} - \STATE \CALL{Quicksort}{$$A, p, q - 1$$} - \STATE \CALL{Quicksort}{$$A, q + 1, r$$} - \ENDIF -\ENDPROCEDURE -\PROCEDURE{Partition}{$$A, p, r$$} - \STATE $$x = A[r]$$ - \STATE $$i = p - 1$$ - \FOR{$$j = p$$ \TO $$r - 1$$} - \IF{$$A[j] < x$$} - \STATE $$i = i + 1$$ - \STATE exchange - $$A[i]$$ with $$A[j]$$ - \ENDIF - \STATE exchange $$A[i]$$ with $$A[r]$$ - \ENDFOR -\ENDPROCEDURE -\end{algorithmic} -\end{algorithm} -``` diff --git a/_posts/old/2024-04-28-post-citation.md b/_posts/old/2024-04-28-post-citation.md deleted file mode 100644 index 4b47a27f..00000000 --- a/_posts/old/2024-04-28-post-citation.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -layout: post -title: a post that can be cited -date: 2024-04-28 15:06:00 -description: this is what a post that can be cited looks like -tags: formatting citation -categories: sample-posts -citation: true ---- - -This is an example post that can be cited. The content of the post ends here, while the citation information is automatically provided below. The only thing needed is for you to set the `citation` key in the front matter to `true`. diff --git a/_posts/old/2024-04-29-typograms.md b/_posts/old/2024-04-29-typograms.md deleted file mode 100644 index 6caff4e6..00000000 --- a/_posts/old/2024-04-29-typograms.md +++ /dev/null @@ -1,85 +0,0 @@ ---- -layout: post -title: a post with typograms -date: 2024-04-29 23:36:10 -description: this is what included typograms code could look like -tags: formatting diagrams -categories: sample-posts -typograms: true ---- - -This is an example post with some [typograms](https://github.com/google/typograms/) code. - -````markdown -```typograms -+----+ -| |---> My first diagram! -+----+ -``` -```` - -Which generates: - -```typograms -+----+ -| |---> My first diagram! -+----+ -``` - -Another example: - -````markdown -```typograms -.------------------------. -|.----------------------.| -||"https://example.com" || -|'----------------------'| -| ______________________ | -|| || -|| Welcome! || -|| || -|| || -|| .----------------. || -|| | username | || -|| '----------------' || -|| .----------------. || -|| |"*******" | || -|| '----------------' || -|| || -|| .----------------. || -|| | "Sign-up" | || -|| '----------------' || -|| || -|+----------------------+| -.------------------------. -``` -```` - -which generates: - -```typograms -.------------------------. -|.----------------------.| -||"https://example.com" || -|'----------------------'| -| ______________________ | -|| || -|| Welcome! || -|| || -|| || -|| .----------------. || -|| | username | || -|| '----------------' || -|| .----------------. || -|| |"*******" | || -|| '----------------' || -|| || -|| .----------------. || -|| | "Sign-up" | || -|| '----------------' || -|| || -|+----------------------+| -.------------------------. -``` - -For more examples, check out the [typograms documentation](https://google.github.io/typograms/#examples). diff --git a/_posts/old/2024-05-01-tabs.md b/_posts/old/2024-05-01-tabs.md deleted file mode 100644 index f3d6e2d2..00000000 --- a/_posts/old/2024-05-01-tabs.md +++ /dev/null @@ -1,122 +0,0 @@ ---- -layout: post -title: a post with tabs -date: 2024-05-01 00:32:13 -description: this is what included tabs in a post could look like -tags: formatting code -categories: sample-posts -tabs: true ---- - -This is how a post with [tabs](https://github.com/Ovski4/jekyll-tabs) looks like. Note that the tabs could be used for different purposes, not only for code. - -## First tabs - -To add tabs, use the following syntax: - -{% raw %} - -```liquid -{% tabs group-name %} - -{% tab group-name tab-name-1 %} - -Content 1 - -{% endtab %} - -{% tab group-name tab-name-2 %} - -Content 2 - -{% endtab %} - -{% endtabs %} -``` - -{% endraw %} - -With this you can generate visualizations like: - -{% tabs log %} - -{% tab log php %} - -```php -var_dump('hello'); -``` - -{% endtab %} - -{% tab log js %} - -```javascript -console.log("hello"); -``` - -{% endtab %} - -{% tab log ruby %} - -```javascript -pputs 'hello' -``` - -{% endtab %} - -{% endtabs %} - -## Another example - -{% tabs data-struct %} - -{% tab data-struct yaml %} - -```yaml -hello: - - "whatsup" - - "hi" -``` - -{% endtab %} - -{% tab data-struct json %} - -```json -{ - "hello": ["whatsup", "hi"] -} -``` - -{% endtab %} - -{% endtabs %} - -## Tabs for something else - -{% tabs something-else %} - -{% tab something-else text %} - -Regular text - -{% endtab %} - -{% tab something-else quote %} - -> A quote - -{% endtab %} - -{% tab something-else list %} - -Hipster list - -- brunch -- fixie -- raybans -- messenger bag - -{% endtab %} - -{% endtabs %} diff --git a/_posts/old/2024-12-04-photo-gallery.md b/_posts/old/2024-12-04-photo-gallery.md deleted file mode 100644 index e28eb73f..00000000 --- a/_posts/old/2024-12-04-photo-gallery.md +++ /dev/null @@ -1,97 +0,0 @@ ---- -layout: post -title: a post with image galleries -date: 2024-12-04 01:59:00 -description: this is what included image galleries could look like -tags: formatting images -categories: sample-posts -thumbnail: assets/img/9.jpg -images: - lightbox2: true - photoswipe: true - spotlight: true - venobox: true ---- - -The images in this post are all zoomable, arranged into different mini-galleries using different libraries. - -## [Lightbox2](https://lokeshdhakar.com/projects/lightbox2/) - - - - - ---- - -## [PhotoSwipe](https://photoswipe.com/) - - - ---- - -## [Spotlight JS](https://nextapps-de.github.io/spotlight/) - - - - - - ---- - -## [Venobox](https://veno.es/venobox/) - - - -