GithubHelp home page GithubHelp logo

Comments (11)

Unifex avatar Unifex commented on June 3, 2024 1

On Wed, Nov 7, 2012 at 10:08 AM, Sergey Murzin [email protected]:

It would be great if aside indd files, there would be PostScript files, so
users with Linux could actually read the book.

+1

Regards
Gold
Riding for Christchurch
http://intentionallyhomeless.org/

from dungeon-world.

Sagelt avatar Sagelt commented on June 3, 2024

I'd love for this to happen!

I'll even work on it myself, but it's way down my to-do list.

from dungeon-world.

geneome avatar geneome commented on June 3, 2024

Hey SageIt - Any headway made on providing PostScript files?

from dungeon-world.

Anth0rx avatar Anth0rx commented on June 3, 2024

@Sagelt Is there any update on this issue? I'd love seeing Dungeon World in an editable free and open source format.

from dungeon-world.

lifelike avatar lifelike commented on June 3, 2024

I posted a version in org-mode format that is more editable, but lacks any of the original formatting or graphics. It might be possible to use some clever org-export settings (or pandoc) to generate nicer PDFs from that version, but never looked into it. Pandoc has some InDesign support, but not sure if it can import the styles from DW to apply to an org-mode document? https://github.com/lifelike/Dungeon-World-Org-Mode

from dungeon-world.

Anth0rx avatar Anth0rx commented on June 3, 2024

Well, that's good to know. Thank you very much @lifelike 👍
Still it would be awesome to see Dungeon World documents (especially the character sheets) in an editable format.

from dungeon-world.

Anth0rx avatar Anth0rx commented on June 3, 2024

@Sagelt Is there a way for me to help in that situation?

from dungeon-world.

lifelike avatar lifelike commented on June 3, 2024

The rules are already in a reasonably editable (XML) format. I think the best thing you could do is add a script of some kind to turn that into what. scribus can render. I have a script to generate the org-mode version (to be released sometime in the future). It is not a very difficult format to parse. There are many formats that are more convenient to edit, but imo not worth maintaining two different plain-text formats, and maintaining some binary (scribus?) version would be even worse.

from dungeon-world.

Anth0rx avatar Anth0rx commented on June 3, 2024

@lifelike You are right, the text itself is editable in xml. What I mean are the character sheets, the layout, etc.

from dungeon-world.

Anth0rx avatar Anth0rx commented on June 3, 2024

@Sagelt It would be possible to simply save the indd files as PostScript, wouldn't it?

from dungeon-world.

nerun avatar nerun commented on June 3, 2024

Suggestion, use PANDOC

In Debian-like distros: sudo aptitude install pandoc, or any "apt" tool you like.

I got better results importing to Scribus from ODT than from HTML (XML).

Usage: pandoc -f html -t odt filename.xml -o filename.odt

Script to convert all files in the current folder and move all ODT files to "ODT" folder

#!/bin/bash
if [ ! -d "ODT" ]; then
    mkdir ODT
fi

for file in *.*
do
    if [ -f $file ]; then
        fileShort=${file/.xml/}
        pandoc -f html -t odt $file -o ./ODT/$fileShort.odt
    fi
done

from dungeon-world.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.