Monthly Donations Target: $700
Received So Far This Month: $436
Received Last Month: $754
Please Note: A $6 minimum donation is required before special access is given as a thank-you gift.
(For more information, please click here.)
| 2024-Dec-6 @ 12:32 PM | |
| Bridget Barmaid Member since 2006-Sep-9 Posts: 870 | The Dead Messenger ----- Please read The Mystic Wolf Pub Critiquing Guide. SITE CONTENT POLICY: The administrator of this site will not reject, remove, or censor any story posted to this site based on the story's content. No story shall be removed except for purely technical reasons (which will be worked out with the author so that the story can be reposted as quickly as possible), or due to a direct order from the site's hosting provider, a law-enforcement entity, or the story's owner. | 
| 2024-Dec-7 @ 2:09 AM | |
| Eric Storm Pub Owner Member since 2006-Sep-13 Posts: 5922 | Based solely on the description and the conversation in Discord, might this not need the "sm" code? ----- Please Remember: The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone." The US Constitution does not grant you the right to not be offended. If you don't like what someone's saying... IGNORE THEM. ---- Facebook page | 
| 2024-Dec-7 @ 7:54 AM | |
| Saran Contributor Member since 2023-Sep-19 Posts: 30 | Possibly...  I didn't add it because it's not really part of the sex act itself.  There is definitely pain involved, just not really part of the sex. ----- | 
| 2024-Dec-7 @ 8:32 AM | |
| Eric Storm Pub Owner Member since 2006-Sep-13 Posts: 5922 | Up to you.  I haven't read the story, so I was speaking only from what I'd heard through conversation. ----- Please Remember: The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone." The US Constitution does not grant you the right to not be offended. If you don't like what someone's saying... IGNORE THEM. ---- Facebook page | 
| 2024-Dec-13 @ 1:49 AM | |
| abaddon.pale Contributor Member since 2018-Sep-11 Posts: 90 | not sure why you have 4 line breaks between each paragraph.
 ----- | 
| 2024-Dec-17 @ 10:38 PM | |
| Saran Contributor Member since 2023-Sep-19 Posts: 30 | I think the formatting is a bit of an oddity...  This was posted as text instead of HTML so I think that's part of it.  (I think my original had one line break between each, but the site makes each of those a paragraph...  but that's just a guess.  I should probably fix it) ----- | 
| 2024-Dec-18 @ 1:27 AM | |
| Eric Storm Pub Owner Member since 2006-Sep-13 Posts: 5922 | The larger-than-normal paragraph separations are, indeed, due to the conversion from text to HTML.  However, after looking at the code, I can't determine why it's as large as it is.  The code tells it to turn a "standard" line break (represented as \r\n), into an HTML line break (represented as <br>\n)  The original text contains two standard line breaks (that is, "\r\n \r\n" ) between paragraphs.  For some reason, the script is turning that into FOUR sets of <br>\n.  It shouldn't be doing that, but I have no idea why it is, so I can't fix it. ----- Please Remember: The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone." The US Constitution does not grant you the right to not be offended. If you don't like what someone's saying... IGNORE THEM. ---- Facebook page | 
| 2024-Dec-30 @ 3:53 PM | |
| Saran Contributor Member since 2023-Sep-19 Posts: 30 | 
 My guess is that the parser is turning each line break into a "paragraph break."  (or this specifically new line =><br>\n<br>\n)   Because the <p> marker has margins and such put in place by browsers, it takes care of the spacing, but in TEXT you have to add an extra line to make it "pretty."  So the parser assumes it needs to make the text "pretty" and adds the extra "line break."  So if you submitted each paragraphs as a single line in text and just one line break between lines, it would show up exactly as expected.  But when submitting "pretty" text to the parser, it simple adds double "return" for each new line. ----- | 
| 2024-Dec-31 @ 12:48 AM | |
| Eric Storm Pub Owner Member since 2006-Sep-13 Posts: 5922 | That's not how the parser works.  I should know: I wrote it.  The parser makes (or is supposed to make) a one-to-one conversion: it switches out each "\r\n" combo, or an individual \r or \n, for exactly one "<br>".  It doesn't make any guesses as to why you put a line break in your plaintext at all.  I specifically did not convert to the <p> tag because I was aware that you might not have wanted a paragraph break: sometimes you really do just want to start a new line.  (For instance, when doing poetry.) ----- Please Remember: The right to Freedom of Speech does not carry the proviso, "As long as it doesn't upset anyone." The US Constitution does not grant you the right to not be offended. If you don't like what someone's saying... IGNORE THEM. ---- Facebook page |