asumu
2017-3-24 20:28:57

I got a google webmaster warning about Chrome 56 and password collection. Should I forward it to someone or did whoever is in charge of web stuff get it too?


asumu
2017-3-24 20:29:09

Err, webmaster warning about http://racket-lang.org\|racket-lang.org I mean.


samth
2017-3-24 20:31:41

I have not gotten that


samth
2017-3-24 20:31:59

@asumu can you forward it to me, @mflatt, and MB


asumu
2017-3-24 20:40:54

@samth ok done


leif
2017-3-24 22:17:10

@mflatt Is there any particular reason only a paragraph can have the style pretitle?


leif
2017-3-24 22:17:28

(Or alternatively a similar style property)


leif
2017-3-24 22:17:44

I ask because I have a block I want to be lifted above the title.


leif
2017-3-24 22:18:34

I would be happy to have a pretitle style property for the block, but that would requiring munging with the latex renderer. Which again, happy to do, but I want to make sure there isn’t anything obvious I’m missing first.


mflatt
2017-3-24 22:18:54

I don’t remember whether there was any specific obstacle to allowing 'pretitle on other blocks


leif
2017-3-24 22:19:44

Oh, I mean, it makes sense that you can’t do it as a style itself, because ‘pretitle becomes the block command. But as a style property it makes sense.


leif
2017-3-24 22:19:51

I’ll whip it up and make a PR.


leif
2017-3-24 22:20:29

But I was thinking of something like: @nested[#:style (style “myenv” ‘(pretitle))]{ Some fun text goes here.}


leif
2017-3-24 22:20:53

Which would compile into the following latex code: \begin{myenv} Some fun text goes here. \end{myenv}


leif
2017-3-24 22:20:59

above the title.


mflatt
2017-3-24 22:20:59

I see; I doubt that there’s any obstacle to adding a style property


mflatt
2017-3-24 22:21:17

… but I wouldn’t be too surprised if there’s some obstacle after all


leif
2017-3-24 22:21:20

Okay cool. I’m not sure if a similar thing makes sense for html renderers though.


leif
2017-3-24 22:21:33

Oh, I’m sure there is, in terms of the implementation. But that can be changed. :wink:


leif
2017-3-24 22:21:44

Anyway, thanks.


mwblakley
2017-3-24 22:39:57

@mwblakley has joined the channel


mflatt
2017-3-24 23:34:46

Compatibility question: I’m thinking that find-relative-path should by default case-normalize path elements to compare them; this will only affect Windows, and it would mean that C:\a\b relative to c:\A\c would be ..\b instead of not relative


mflatt
2017-3-24 23:35:51

I imaging adding a keyword argument to disable case normalization, but I can’t think of a use where I wouldn’t want to normalize – and I doubt that I’ll remember the issue the next time I use find-relative-path


mflatt
2017-3-24 23:36:17

Does that seem like a backward-compatibility problem to anyone?


samth
2017-3-24 23:36:25

@mflatt that seems like a good change


leif
2017-3-25 00:18:02

Agreed


leif
2017-3-25 00:18:18

Also @mflatt I added the pretitle style property: https://github.com/racket/scribble/pull/94


leif
2017-3-25 00:18:43

(This is required for the acmart latex class, which expects the abstract to appear before maketitle rather than after.


leif
2017-3-25 00:19:27

(We ‘could’ make it a paragraph which inserts the exact \begin{abstract} … \end{abstract} characters, but then the abstract would only be a paragraph rather than a full flow.)