From mboxrd@z Thu Jan 1 00:00:00 1970 From: Greg Minshall Subject: org-info.js not displaying document? Date: Thu, 26 Nov 2015 06:31:04 +0200 Message-ID: <42772.1448512264@greg-minshalls-mbp-2.local> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44117) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1oD8-0004Ci-RR for emacs-orgmode@gnu.org; Wed, 25 Nov 2015 23:31:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1a1oD5-0006DB-Kv for emacs-orgmode@gnu.org; Wed, 25 Nov 2015 23:31:10 -0500 Received: from relay01.pair.com ([209.68.5.15]:42107) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1a1oD5-0006Ct-HM for emacs-orgmode@gnu.org; Wed, 25 Nov 2015 23:31:07 -0500 Received: from gregair.cliq.com (unknown [95.8.137.103]) by relay01.pair.com (Postfix) with ESMTP id D9C6DD00B07 for ; Wed, 25 Nov 2015 23:31:05 -0500 (EST) Received: from greg-minshalls-mbp-2.local (localhost [127.0.0.1]) by gregair.cliq.com (Postfix) with ESMTP id 55CBB188AB494 for ; Thu, 26 Nov 2015 06:31:04 +0200 (EET) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: org mode hi. i'm trying to export a file using org-info.js, but i'm not getting anything (other than the footer with my name, creation date, and an offer to validate the file) when i open the resulting html file (everything is *in* the html file, it just isn't showing up). i'm using a very simple ---- #+INFOJS_OPT: view:showall toc:2 ---- a simple test case is below i know nothing about javascript. but Firefox (42.0) on my macosx (10.10.5) has Tools:Web Developer:Console, which says: ---- TypeError: k.T is undefined ---- on org-info 81:85 possibly the offending section of code is: ---- k.T=k.B.getElementsByTagName("h1")[0]; ---- i'm running ---- Org-mode version 8.3.2 (release_8.3.2-338-g522ec9 @ /Users/minshall/usr/share/emacs/site-lisp/org/) ---- on ---- GNU Emacs 24.5.2 (x86_64-apple-darwin14.4.0, GTK+ Version 2.18.9) of 2015-11-22 on greg-minshalls-mbp-2.local ---- any thoughts? if i didn't see the error message, i'd be sure i was doing something wrong (but, possibly i still am). cheers, Greg Minshall ps -- here is a trivial file that fails for me: ---- * testing #+INFOJS_OPT: view:showall toc:2 this is a test ** here is something ** here is something else with some text after it ----