[Org] Repository for my personal website.
Add miscellaneous changes.
Changed files
blog/2024/earley-parsing.org
@@ -0,0 +1,7 @@
1
Added:
#+TITLE: Earley Parsing
2
Added:
#+SUBTITLE: A powerful and flexible parsing algorithm for Context-Free Grammars.
3
Added:
#+AUTHOR: Marius Peter
4
Added:
#+DATE: <2024-01-02 Tue>
5
Added:
6
Added:
7
Added:
* Background
blog/index.org
@@ -1,8 +1,10 @@
1
1
#+TITLE: Sitemap for [[https://blog.mlnp.fr][blog.mlnp.fr]]
2
2
3
Removed:
- 2023
4
Removed:
- [[file:2023/future.org][Welcome to the future!]]
5
3
- 2022
6
Removed:
- [[file:2022/test-post.org][Test post]]
7
4
- [[file:2022/hello-world.org][Hello World!]]
5
Added:
- [[file:2022/test-post.org][Test post]]
8
6
- [[file:2022/why-study-languages.org][Why study languages?]]
7
Added:
- 2023
8
Added:
- [[file:2023/future.org][Welcome to the future!]]
9
Added:
- 2024
10
Added:
- [[file:2024/earley-parsing.org][Earley Parsing]]
index.org
@@ -61,7 +61,7 @@
61
61
- [[https://blog.mlnp.fr/2022/hello-world.html][Hello World!]]
62
62
- [[https://blog.mlnp.fr/2022/why-study-languages.html][Why study languages?]]
63
63
64
Removed:
[[https://blog.mlnp.fr/sitemap.html][See more...]]
64
Added:
[[https://blog.mlnp.fr][See more...]]
65
65
66
66
67
67
** Main wiki sections
publish-mlnp.org
@@ -529,32 +529,32 @@
529
529
530
530
#+NAME: blog.mlnp.fr
531
531
#+BEGIN_SRC emacs-lisp
532
Removed:
("blog.mlnp.fr"
533
Removed:
:components ("blog-main-pages"
534
Removed:
"blog-resources"
535
Removed:
"blog-fonts"))
536
Removed:
("blog-main-pages"
537
Removed:
:base-directory "blog/"
538
Removed:
:base-extension "org"
539
Removed:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/")
540
Removed:
:recursive t
541
Removed:
:html-head "<link rel='stylesheet' type='text/css' href='https://blog.mlnp.fr/resources/global.css'/>
542
Removed:
<link rel='icon' type='image/png' href='https://blog.mlnp.fr/resources/favicon.png'/>"
543
Removed:
:auto-sitemap t
544
Removed:
:sitemap-filename "index.org"
545
Removed:
:sitemap-title "Sitemap for [[https://blog.mlnp.fr][blog.mlnp.fr]]"
546
Removed:
:sitemap-sort-files chronologically
547
Removed:
:publishing-function org-html-publish-to-html)
548
Removed:
("blog-resources"
549
Removed:
:base-directory "resources/"
550
Removed:
:base-extension "css\\|js\\|png"
551
Removed:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/resources/")
552
Removed:
:publishing-function org-publish-attachment)
553
Removed:
("blog-fonts"
554
Removed:
:base-directory "resources/fonts/"
555
Removed:
:base-extension "ttf\\|otf"
556
Removed:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/resources/fonts/")
557
Removed:
:publishing-function org-publish-attachment)
532
Added:
("blog.mlnp.fr"
533
Added:
:components ("blog-main-pages"
534
Added:
"blog-resources"
535
Added:
"blog-fonts"))
536
Added:
("blog-main-pages"
537
Added:
:base-directory "blog/"
538
Added:
:base-extension "org"
539
Added:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/")
540
Added:
:recursive t
541
Added:
:html-head "<link rel='stylesheet' type='text/css' href='https://blog.mlnp.fr/resources/global.css'/>
542
Added:
<link rel='icon' type='image/png' href='https://blog.mlnp.fr/resources/favicon.png'/>"
543
Added:
:auto-sitemap t
544
Added:
:sitemap-filename "index.org"
545
Added:
:sitemap-title "Sitemap for [[https://blog.mlnp.fr][blog.mlnp.fr]]"
546
Added:
:sitemap-sort-files alphabetically
547
Added:
:publishing-function org-html-publish-to-html)
548
Added:
("blog-resources"
549
Added:
:base-directory "resources/"
550
Added:
:base-extension "css\\|js\\|png"
551
Added:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/resources/")
552
Added:
:publishing-function org-publish-attachment)
553
Added:
("blog-fonts"
554
Added:
:base-directory "resources/fonts/"
555
Added:
:base-extension "ttf\\|otf"
556
Added:
:publishing-directory ,(concat org-publish-location-local "blog.mlnp.fr/resources/fonts/")
557
Added:
:publishing-function org-publish-attachment)
558
558
#+END_SRC
559
559
560
560
@@ -630,7 +630,7 @@
630
630
#+END_SRC
631
631
632
632
#+RESULTS: main
633
Removed:
: #<window 69 on *Async Shell Command*>
633
Added:
: #<window 37 on *Async Shell Command*>
634
634
635
635
The following links to the locally built homepages are useful after
636
636
building the website locally, to check that everything proceeded smoothly.
resources/topnav.html
@@ -1,9 +1,15 @@
1
1
<div id="topnav">
2
2
<div id="buttons">
3
Removed:
<a href="http://mlnp.fr" class="button">Home</a>
4
Removed:
<a href="#table-of-contents" class="button">Contents</a>
5
Removed:
<!-- <a href="#table-of-contents" id="home">ToC</a> -->
6
Removed:
<!-- <a href="#table-of-contents" id="home">ToC</a> -->
3
Added:
<a href="http://mlnp.fr" class="button">
4
Added:
Home
5
Added:
</a>
6
Added:
<a href="#table-of-contents" class="button">
7
Added:
Contents
8
Added:
</a>
9
Added:
<!--
10
Added:
<a href="#table-of-contents" id="home">
11
Added:
ToC</a> -->
12
Added:
<!-- <a href="#table-of-contents" id="home">ToC</a> -->
7
13
</div>
8
14
<input type="checkbox" id="menu-toggle"/>
9
15
<label for="menu-toggle" id="hamburger">
@@ -18,7 +24,8 @@
18
24
<li><a href="https://blog.mlnp.fr">Blog</a></li>
19
25
<li><a href="https://wiki.mlnp.fr">Wiki</a></li>
20
26
<li><a href="https://apps.mlnp.fr">Apps</a></li>
21
Removed:
<li><a href="https://mlnp.fr/cv.html">Curriculum Vitae</a></li>
27
Added:
<li><a href="https://git.mlnp.fr">Code</a></li>
28
Added:
<li><a href="https://mlnp.fr/cv.html">Résumé</a></li>
22
29
<li><a href="https://mlnp.fr/about.html#contact">Contact</a></li>
23
30
</ul>
24
31
</div>