parser
This commit is contained in:
parent
de90183cd4
commit
795a794430
@ -1,7 +1,7 @@
|
||||
#+AUTHOR: bparodi
|
||||
#+TITLE: Borderlands 2
|
||||
#+FILETAGS: :games:pc:borderlands:
|
||||
# #+options: html-style:nil html-scripts:nil date:nil created:nil
|
||||
#+OPTIONS: html-style:nil html-scripts:nil date:nil created:nil
|
||||
# #+HTML_HEAD: <link rel="stylesheet" href="articles.css">
|
||||
* Borderlands2 per lezzi
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
#+TITLE: CEMU
|
||||
#+FILETAGS: :emulation:
|
||||
#+AUTHOR: bparodi
|
||||
#+options: html-style:nil html-scripts:nil date:nil created:nil
|
||||
Latest used version: [[./files/cemu-2.0-36-windows-x64.zip][Cemu 2.0-36 (Experimental) Pre-release]]
|
||||
|
17
gamewiki/makefile
Normal file
17
gamewiki/makefile
Normal file
@ -0,0 +1,17 @@
|
||||
ORG_FILES := $(shell find . -type f -name '*.org' )
|
||||
HTML_FILES := $(patsubst %.org,temp/%.html,$(ORG_FILES))
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
all: $(HTML_FILES)
|
||||
|
||||
temp/%.html: %.org | temp
|
||||
emacs $< --batch -f org-html-export-to-html --kill
|
||||
mv $(basename $<).html $@
|
||||
|
||||
temp:
|
||||
mkdir temp
|
||||
mkdir temp/meta
|
||||
|
||||
clean:
|
||||
rm -rf temp
|
@ -1,5 +1,6 @@
|
||||
#+TITLE: Mario Kart 8
|
||||
#+FILETAGS: :games:wiiu:mario:
|
||||
#+options: html-style:nil html-scripts:nil date:nil created:nil
|
||||
#+AUTHOR: bparodi
|
||||
Works with default configurations provided that you have support for vulkan
|
||||
async compile.
|
||||
|
@ -1,3 +1,4 @@
|
||||
#+TITLE: Guides
|
||||
#+FILETAGS: :guides:
|
||||
** Pages in this category
|
||||
- [[../wiiu.org][Nintendo Wii U]]
|
||||
|
@ -1,5 +1,7 @@
|
||||
#+TITLE: Nintendo
|
||||
#+FILETAGS: :nintendo:
|
||||
#+OPTIONS: creator:nil
|
||||
#+OPTIONS: date:nil
|
||||
** Pages in this category
|
||||
- [[../wiiu.org][Nintendo Wii U]]
|
||||
- [[../nus.org][NUS Downloader]]
|
||||
|
@ -125,3 +125,6 @@ if __name__ == '__main__':
|
||||
if related:
|
||||
newcontent = f.enrich(map(lambda f: byfilename[f], related))
|
||||
writetodisk(f, newcontent)
|
||||
|
||||
unused = tags.keys() - meta
|
||||
print(f'Finished exporting. List of unused tags: {unused}')
|
||||
|
@ -1,5 +1,5 @@
|
||||
#+TITLE: Nintendo Wii U
|
||||
#+FILETAGS: :guide:emulation:nintendo:
|
||||
#+FILETAGS: :guides:emulation:nintendo:
|
||||
#+AUTHOR: bparodi
|
||||
We use [[./cemu.org][CEMU]] to emulate the Wii U platform and play the games on the pc.
|
||||
The biggest difference compared to other emulators is the workflow to play a
|
||||
|
Loading…
Reference in New Issue
Block a user