Compare commits

..

No commits in common. "d2d49f649b2d7257d2dee201f6f6292700278c9a" and "fbcde80630be70614cf9f93e646e9cc010443b3e" have entirely different histories.

3 changed files with 1 additions and 5 deletions

View File

@ -79,7 +79,6 @@
(let ((cleanline (md4tj-clean-multiline line)))
;; If this is a signal to include another file
(cond ((string-match "^@@INCLUDE" line) (md4tj-parse-to-string (nth 1 (split-string line))))
((string-match "^@@LASTUPDATED" line) (concat "Last updated: " (current-time-string)))
;; If this is some other signal, ignore
((string-match "^@@" line) "")
;; Otherwise, process as normal

View File

@ -2,7 +2,6 @@
<html lang="en-us">
<head>
<link rel="stylesheet" href="test_css.css">
<title>Test webpage</title>
@ -46,6 +45,5 @@ int main() {
</code>
</pre>
<br/>
Last updated: Wed Jan 4 10:43:05 2023
</body>
</html>

View File

@ -26,5 +26,4 @@ int main() {
printf("%s\n", "Hello World!");
return 0;
}
```
@@LASTUPDATED
```