I am particularly interested in language and its relation to meaning.
This manifests itself in different fashions in different fields.
@@ -25,8 +25,8 @@ title: my special corner of the web
In computer science: I care about language interoperability: the preservation of meaning across languages with differing types systems, operational semantics, and conventions.
- In mathematics: I have a particular interest in foundations and category theory.
+ In mathematics: I have a particular interest in foundations and category theory: and how they inform what we mean by proof. This in turn has manifested an interest in theorem provers and proof mechanization.
-
I am actively looking for a research position on this topic, starting Sep. 2025. If you know a professor who is hiring students and working on any of the above, please send me an email!
+
I am actively looking for a research position on this topic, to start Sep. 2025. If you know a professor who is hiring students and working on any of the above, please send me an email!
diff --git a/site.hs b/site.hs
index 47a385b..a87a46e 100644
--- a/site.hs
+++ b/site.hs
@@ -12,8 +12,7 @@ pandocCompiler =
removedExtensions = extensionsFromList [Ext_blank_before_header, Ext_blank_before_blockquote]
writerOptions = defaultHakyllWriterOptions {
writerExtensions = disableExtensions (defaultExtensions <> pandocExtensions <> addedExtensions) removedExtensions,
- writerHTMLMathMethod = MathML,
- writerHighlightStyle = Just zenburn
+ writerHTMLMathMethod = MathML
}
in pandocCompilerWith defaultHakyllReaderOptions writerOptions
@@ -45,16 +44,16 @@ main = hakyll $ do
>>= relativizeUrls
-- Match all other renderable files and apply their template, if it exists
- match ("**.md" .||. "**.markdown") $ do
+ match ("**.md" .||. "**.rst" .||. "**.org" .||. "**.adoc") $ do
route $ setExtension "html"
compile $ pandocCompiler
>>= loadLayoutTemplate defaultContext
>>= relativizeUrls
-- Additionally copy non-HTML files verbatium
- match ("**.md" .||. "**.markdown") $ version "raw" $ do
+ match ("**.md" .||. "**.rst" .||. "**.org" .||. "**.adoc") $ version "raw" $ do
route idRoute
- compile pandocCompiler
+ compile getResourceBody
-- Copy all additional files verbatium
match "**" $ do
--
cgit v1.2.3-70-g09d2